@objectstack/plugin-approvals 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/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +26 -0
- package/dist/index.d.mts +53 -2013
- package/dist/index.d.ts +53 -2013
- package/package.json +7 -7
package/dist/index.d.mts
CHANGED
|
@@ -37,7 +37,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
37
37
|
multiple: boolean;
|
|
38
38
|
unique: boolean;
|
|
39
39
|
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
40
|
-
auditTrail: boolean;
|
|
41
40
|
hidden: boolean;
|
|
42
41
|
readonly: boolean;
|
|
43
42
|
sortable: boolean;
|
|
@@ -63,7 +62,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
63
62
|
}[] | undefined;
|
|
64
63
|
reference?: string | undefined;
|
|
65
64
|
referenceFilters?: string[] | undefined;
|
|
66
|
-
writeRequiresMasterRead?: boolean | undefined;
|
|
67
65
|
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
68
66
|
inlineTitle?: string | undefined;
|
|
69
67
|
inlineColumns?: any[] | undefined;
|
|
@@ -95,23 +93,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
95
93
|
relationshipField?: string | undefined;
|
|
96
94
|
} | undefined;
|
|
97
95
|
language?: string | undefined;
|
|
98
|
-
theme?: string | undefined;
|
|
99
|
-
lineNumbers?: boolean | undefined;
|
|
100
96
|
maxRating?: number | undefined;
|
|
101
|
-
allowHalf?: boolean | undefined;
|
|
102
|
-
displayMap?: boolean | undefined;
|
|
103
|
-
allowGeocoding?: boolean | undefined;
|
|
104
|
-
addressFormat?: "us" | "uk" | "international" | undefined;
|
|
105
|
-
colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
106
|
-
allowAlpha?: boolean | undefined;
|
|
107
|
-
presetColors?: string[] | undefined;
|
|
108
97
|
step?: number | undefined;
|
|
109
|
-
showValue?: boolean | undefined;
|
|
110
|
-
marks?: Record<string, string> | undefined;
|
|
111
|
-
barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
112
|
-
qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
113
|
-
displayValue?: boolean | undefined;
|
|
114
|
-
allowScanning?: boolean | undefined;
|
|
115
98
|
currencyConfig?: {
|
|
116
99
|
precision: number;
|
|
117
100
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -165,46 +148,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
165
148
|
} | undefined;
|
|
166
149
|
maxVersions?: number | undefined;
|
|
167
150
|
} | undefined;
|
|
168
|
-
|
|
169
|
-
enabled: boolean;
|
|
170
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
171
|
-
keyManagement: {
|
|
172
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
173
|
-
keyId?: string | undefined;
|
|
174
|
-
rotationPolicy?: {
|
|
175
|
-
enabled: boolean;
|
|
176
|
-
frequencyDays: number;
|
|
177
|
-
retainOldVersions: number;
|
|
178
|
-
autoRotate: boolean;
|
|
179
|
-
} | undefined;
|
|
180
|
-
};
|
|
181
|
-
scope: "record" | "field" | "table" | "database";
|
|
182
|
-
deterministicEncryption: boolean;
|
|
183
|
-
searchableEncryption: boolean;
|
|
184
|
-
} | undefined;
|
|
185
|
-
maskingRule?: {
|
|
186
|
-
field: string;
|
|
187
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
188
|
-
preserveFormat: boolean;
|
|
189
|
-
preserveLength: boolean;
|
|
190
|
-
pattern?: string | undefined;
|
|
191
|
-
roles?: string[] | undefined;
|
|
192
|
-
exemptRoles?: string[] | undefined;
|
|
193
|
-
} | undefined;
|
|
151
|
+
trackHistory?: boolean | undefined;
|
|
194
152
|
dependencies?: string[] | undefined;
|
|
195
|
-
cached?: {
|
|
196
|
-
enabled: boolean;
|
|
197
|
-
ttl: number;
|
|
198
|
-
invalidateOn: string[];
|
|
199
|
-
} | undefined;
|
|
200
|
-
dataQuality?: {
|
|
201
|
-
uniqueness: boolean;
|
|
202
|
-
completeness: number;
|
|
203
|
-
accuracy?: {
|
|
204
|
-
source: string;
|
|
205
|
-
threshold: number;
|
|
206
|
-
} | undefined;
|
|
207
|
-
} | undefined;
|
|
208
153
|
group?: string | undefined;
|
|
209
154
|
visibleWhen?: {
|
|
210
155
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -276,7 +221,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
276
221
|
} | undefined;
|
|
277
222
|
system?: boolean | undefined;
|
|
278
223
|
inlineHelpText?: string | undefined;
|
|
279
|
-
trackFeedHistory?: boolean | undefined;
|
|
280
224
|
caseSensitive?: boolean | undefined;
|
|
281
225
|
autonumberFormat?: string | undefined;
|
|
282
226
|
}>;
|
|
@@ -367,12 +311,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
367
311
|
key: string;
|
|
368
312
|
interval?: string | undefined;
|
|
369
313
|
} | undefined;
|
|
370
|
-
cdc?: {
|
|
371
|
-
enabled: boolean;
|
|
372
|
-
events: ("delete" | "update" | "insert")[];
|
|
373
|
-
destination: string;
|
|
374
|
-
} | undefined;
|
|
375
314
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
315
|
+
activityMilestones?: {
|
|
316
|
+
field: string;
|
|
317
|
+
value: string;
|
|
318
|
+
summary: string;
|
|
319
|
+
type?: string | undefined;
|
|
320
|
+
}[] | undefined;
|
|
376
321
|
displayNameField?: string | undefined;
|
|
377
322
|
recordName?: {
|
|
378
323
|
type: "text" | "autonumber";
|
|
@@ -683,7 +628,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
683
628
|
clone: boolean;
|
|
684
629
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
685
630
|
} | undefined;
|
|
686
|
-
recordTypes?: string[] | undefined;
|
|
687
631
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
688
632
|
publicSharing?: {
|
|
689
633
|
enabled: boolean;
|
|
@@ -926,7 +870,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
926
870
|
readonly required?: boolean | undefined;
|
|
927
871
|
readonly multiple?: boolean | undefined;
|
|
928
872
|
readonly dependencies?: string[] | undefined;
|
|
929
|
-
readonly theme?: string | undefined;
|
|
930
873
|
readonly externalId?: boolean | undefined;
|
|
931
874
|
readonly defaultValue?: unknown;
|
|
932
875
|
readonly group?: string | undefined;
|
|
@@ -934,23 +877,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
934
877
|
readonly system?: boolean | undefined;
|
|
935
878
|
readonly min?: number | undefined;
|
|
936
879
|
readonly max?: number | undefined;
|
|
937
|
-
readonly encryptionConfig?: {
|
|
938
|
-
enabled: boolean;
|
|
939
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
940
|
-
keyManagement: {
|
|
941
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
942
|
-
keyId?: string | undefined;
|
|
943
|
-
rotationPolicy?: {
|
|
944
|
-
enabled: boolean;
|
|
945
|
-
frequencyDays: number;
|
|
946
|
-
retainOldVersions: number;
|
|
947
|
-
autoRotate: boolean;
|
|
948
|
-
} | undefined;
|
|
949
|
-
};
|
|
950
|
-
scope: "record" | "field" | "table" | "database";
|
|
951
|
-
deterministicEncryption: boolean;
|
|
952
|
-
searchableEncryption: boolean;
|
|
953
|
-
} | undefined;
|
|
954
880
|
readonly columnName?: string | undefined;
|
|
955
881
|
readonly searchable?: boolean | undefined;
|
|
956
882
|
readonly unique?: boolean | undefined;
|
|
@@ -959,7 +885,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
959
885
|
readonly scale?: number | undefined;
|
|
960
886
|
readonly reference?: string | undefined;
|
|
961
887
|
readonly referenceFilters?: string[] | undefined;
|
|
962
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
963
888
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
964
889
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
965
890
|
readonly inlineTitle?: string | undefined;
|
|
@@ -984,22 +909,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
984
909
|
relationshipField?: string | undefined;
|
|
985
910
|
} | undefined;
|
|
986
911
|
readonly language?: string | undefined;
|
|
987
|
-
readonly lineNumbers?: boolean | undefined;
|
|
988
912
|
readonly maxRating?: number | undefined;
|
|
989
|
-
readonly allowHalf?: boolean | undefined;
|
|
990
|
-
readonly displayMap?: boolean | undefined;
|
|
991
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
992
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
993
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
994
|
-
readonly allowAlpha?: boolean | undefined;
|
|
995
|
-
readonly presetColors?: string[] | undefined;
|
|
996
913
|
readonly step?: number | undefined;
|
|
997
|
-
readonly showValue?: boolean | undefined;
|
|
998
|
-
readonly marks?: Record<string, string> | undefined;
|
|
999
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1000
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1001
|
-
readonly displayValue?: boolean | undefined;
|
|
1002
|
-
readonly allowScanning?: boolean | undefined;
|
|
1003
914
|
readonly currencyConfig?: {
|
|
1004
915
|
precision: number;
|
|
1005
916
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1053,29 +964,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1053
964
|
} | undefined;
|
|
1054
965
|
maxVersions?: number | undefined;
|
|
1055
966
|
} | undefined;
|
|
1056
|
-
readonly
|
|
1057
|
-
field: string;
|
|
1058
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1059
|
-
preserveFormat: boolean;
|
|
1060
|
-
preserveLength: boolean;
|
|
1061
|
-
pattern?: string | undefined;
|
|
1062
|
-
roles?: string[] | undefined;
|
|
1063
|
-
exemptRoles?: string[] | undefined;
|
|
1064
|
-
} | undefined;
|
|
1065
|
-
readonly auditTrail?: boolean | undefined;
|
|
1066
|
-
readonly cached?: {
|
|
1067
|
-
enabled: boolean;
|
|
1068
|
-
ttl: number;
|
|
1069
|
-
invalidateOn: string[];
|
|
1070
|
-
} | undefined;
|
|
1071
|
-
readonly dataQuality?: {
|
|
1072
|
-
uniqueness: boolean;
|
|
1073
|
-
completeness: number;
|
|
1074
|
-
accuracy?: {
|
|
1075
|
-
source: string;
|
|
1076
|
-
threshold: number;
|
|
1077
|
-
} | undefined;
|
|
1078
|
-
} | undefined;
|
|
967
|
+
readonly trackHistory?: boolean | undefined;
|
|
1079
968
|
readonly visibleWhen?: {
|
|
1080
969
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1081
970
|
source?: string | undefined;
|
|
@@ -1114,7 +1003,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1114
1003
|
} | undefined;
|
|
1115
1004
|
readonly sortable?: boolean | undefined;
|
|
1116
1005
|
readonly inlineHelpText?: string | undefined;
|
|
1117
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1118
1006
|
readonly caseSensitive?: boolean | undefined;
|
|
1119
1007
|
readonly autonumberFormat?: string | undefined;
|
|
1120
1008
|
readonly index?: boolean | undefined;
|
|
@@ -1136,7 +1024,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1136
1024
|
readonly required?: boolean | undefined;
|
|
1137
1025
|
readonly multiple?: boolean | undefined;
|
|
1138
1026
|
readonly dependencies?: string[] | undefined;
|
|
1139
|
-
readonly theme?: string | undefined;
|
|
1140
1027
|
readonly externalId?: boolean | undefined;
|
|
1141
1028
|
readonly defaultValue?: unknown;
|
|
1142
1029
|
readonly group?: string | undefined;
|
|
@@ -1144,23 +1031,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1144
1031
|
readonly system?: boolean | undefined;
|
|
1145
1032
|
readonly min?: number | undefined;
|
|
1146
1033
|
readonly max?: number | undefined;
|
|
1147
|
-
readonly encryptionConfig?: {
|
|
1148
|
-
enabled: boolean;
|
|
1149
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1150
|
-
keyManagement: {
|
|
1151
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1152
|
-
keyId?: string | undefined;
|
|
1153
|
-
rotationPolicy?: {
|
|
1154
|
-
enabled: boolean;
|
|
1155
|
-
frequencyDays: number;
|
|
1156
|
-
retainOldVersions: number;
|
|
1157
|
-
autoRotate: boolean;
|
|
1158
|
-
} | undefined;
|
|
1159
|
-
};
|
|
1160
|
-
scope: "record" | "field" | "table" | "database";
|
|
1161
|
-
deterministicEncryption: boolean;
|
|
1162
|
-
searchableEncryption: boolean;
|
|
1163
|
-
} | undefined;
|
|
1164
1034
|
readonly columnName?: string | undefined;
|
|
1165
1035
|
readonly searchable?: boolean | undefined;
|
|
1166
1036
|
readonly unique?: boolean | undefined;
|
|
@@ -1169,7 +1039,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1169
1039
|
readonly scale?: number | undefined;
|
|
1170
1040
|
reference: string;
|
|
1171
1041
|
readonly referenceFilters?: string[] | undefined;
|
|
1172
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1173
1042
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1174
1043
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1175
1044
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1194,22 +1063,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1194
1063
|
relationshipField?: string | undefined;
|
|
1195
1064
|
} | undefined;
|
|
1196
1065
|
readonly language?: string | undefined;
|
|
1197
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1198
1066
|
readonly maxRating?: number | undefined;
|
|
1199
|
-
readonly allowHalf?: boolean | undefined;
|
|
1200
|
-
readonly displayMap?: boolean | undefined;
|
|
1201
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1202
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1203
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1204
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1205
|
-
readonly presetColors?: string[] | undefined;
|
|
1206
1067
|
readonly step?: number | undefined;
|
|
1207
|
-
readonly showValue?: boolean | undefined;
|
|
1208
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1209
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1210
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1211
|
-
readonly displayValue?: boolean | undefined;
|
|
1212
|
-
readonly allowScanning?: boolean | undefined;
|
|
1213
1068
|
readonly currencyConfig?: {
|
|
1214
1069
|
precision: number;
|
|
1215
1070
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1263,29 +1118,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1263
1118
|
} | undefined;
|
|
1264
1119
|
maxVersions?: number | undefined;
|
|
1265
1120
|
} | undefined;
|
|
1266
|
-
readonly
|
|
1267
|
-
field: string;
|
|
1268
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1269
|
-
preserveFormat: boolean;
|
|
1270
|
-
preserveLength: boolean;
|
|
1271
|
-
pattern?: string | undefined;
|
|
1272
|
-
roles?: string[] | undefined;
|
|
1273
|
-
exemptRoles?: string[] | undefined;
|
|
1274
|
-
} | undefined;
|
|
1275
|
-
readonly auditTrail?: boolean | undefined;
|
|
1276
|
-
readonly cached?: {
|
|
1277
|
-
enabled: boolean;
|
|
1278
|
-
ttl: number;
|
|
1279
|
-
invalidateOn: string[];
|
|
1280
|
-
} | undefined;
|
|
1281
|
-
readonly dataQuality?: {
|
|
1282
|
-
uniqueness: boolean;
|
|
1283
|
-
completeness: number;
|
|
1284
|
-
accuracy?: {
|
|
1285
|
-
source: string;
|
|
1286
|
-
threshold: number;
|
|
1287
|
-
} | undefined;
|
|
1288
|
-
} | undefined;
|
|
1121
|
+
readonly trackHistory?: boolean | undefined;
|
|
1289
1122
|
readonly visibleWhen?: {
|
|
1290
1123
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1291
1124
|
source?: string | undefined;
|
|
@@ -1324,7 +1157,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1324
1157
|
} | undefined;
|
|
1325
1158
|
readonly sortable?: boolean | undefined;
|
|
1326
1159
|
readonly inlineHelpText?: string | undefined;
|
|
1327
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1328
1160
|
readonly caseSensitive?: boolean | undefined;
|
|
1329
1161
|
readonly autonumberFormat?: string | undefined;
|
|
1330
1162
|
readonly index?: boolean | undefined;
|
|
@@ -1346,7 +1178,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1346
1178
|
readonly required?: boolean | undefined;
|
|
1347
1179
|
readonly multiple?: boolean | undefined;
|
|
1348
1180
|
readonly dependencies?: string[] | undefined;
|
|
1349
|
-
readonly theme?: string | undefined;
|
|
1350
1181
|
readonly externalId?: boolean | undefined;
|
|
1351
1182
|
readonly defaultValue?: unknown;
|
|
1352
1183
|
readonly group?: string | undefined;
|
|
@@ -1354,23 +1185,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1354
1185
|
readonly system?: boolean | undefined;
|
|
1355
1186
|
readonly min?: number | undefined;
|
|
1356
1187
|
readonly max?: number | undefined;
|
|
1357
|
-
readonly encryptionConfig?: {
|
|
1358
|
-
enabled: boolean;
|
|
1359
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1360
|
-
keyManagement: {
|
|
1361
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1362
|
-
keyId?: string | undefined;
|
|
1363
|
-
rotationPolicy?: {
|
|
1364
|
-
enabled: boolean;
|
|
1365
|
-
frequencyDays: number;
|
|
1366
|
-
retainOldVersions: number;
|
|
1367
|
-
autoRotate: boolean;
|
|
1368
|
-
} | undefined;
|
|
1369
|
-
};
|
|
1370
|
-
scope: "record" | "field" | "table" | "database";
|
|
1371
|
-
deterministicEncryption: boolean;
|
|
1372
|
-
searchableEncryption: boolean;
|
|
1373
|
-
} | undefined;
|
|
1374
1188
|
readonly columnName?: string | undefined;
|
|
1375
1189
|
readonly searchable?: boolean | undefined;
|
|
1376
1190
|
readonly unique?: boolean | undefined;
|
|
@@ -1379,7 +1193,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1379
1193
|
readonly scale?: number | undefined;
|
|
1380
1194
|
readonly reference?: string | undefined;
|
|
1381
1195
|
readonly referenceFilters?: string[] | undefined;
|
|
1382
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1383
1196
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1384
1197
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1385
1198
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1404,22 +1217,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1404
1217
|
relationshipField?: string | undefined;
|
|
1405
1218
|
} | undefined;
|
|
1406
1219
|
readonly language?: string | undefined;
|
|
1407
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1408
1220
|
readonly maxRating?: number | undefined;
|
|
1409
|
-
readonly allowHalf?: boolean | undefined;
|
|
1410
|
-
readonly displayMap?: boolean | undefined;
|
|
1411
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1412
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1413
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1414
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1415
|
-
readonly presetColors?: string[] | undefined;
|
|
1416
1221
|
readonly step?: number | undefined;
|
|
1417
|
-
readonly showValue?: boolean | undefined;
|
|
1418
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1419
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1420
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1421
|
-
readonly displayValue?: boolean | undefined;
|
|
1422
|
-
readonly allowScanning?: boolean | undefined;
|
|
1423
1222
|
readonly currencyConfig?: {
|
|
1424
1223
|
precision: number;
|
|
1425
1224
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1473,29 +1272,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1473
1272
|
} | undefined;
|
|
1474
1273
|
maxVersions?: number | undefined;
|
|
1475
1274
|
} | undefined;
|
|
1476
|
-
readonly
|
|
1477
|
-
field: string;
|
|
1478
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1479
|
-
preserveFormat: boolean;
|
|
1480
|
-
preserveLength: boolean;
|
|
1481
|
-
pattern?: string | undefined;
|
|
1482
|
-
roles?: string[] | undefined;
|
|
1483
|
-
exemptRoles?: string[] | undefined;
|
|
1484
|
-
} | undefined;
|
|
1485
|
-
readonly auditTrail?: boolean | undefined;
|
|
1486
|
-
readonly cached?: {
|
|
1487
|
-
enabled: boolean;
|
|
1488
|
-
ttl: number;
|
|
1489
|
-
invalidateOn: string[];
|
|
1490
|
-
} | undefined;
|
|
1491
|
-
readonly dataQuality?: {
|
|
1492
|
-
uniqueness: boolean;
|
|
1493
|
-
completeness: number;
|
|
1494
|
-
accuracy?: {
|
|
1495
|
-
source: string;
|
|
1496
|
-
threshold: number;
|
|
1497
|
-
} | undefined;
|
|
1498
|
-
} | undefined;
|
|
1275
|
+
readonly trackHistory?: boolean | undefined;
|
|
1499
1276
|
readonly visibleWhen?: {
|
|
1500
1277
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1501
1278
|
source?: string | undefined;
|
|
@@ -1534,7 +1311,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1534
1311
|
} | undefined;
|
|
1535
1312
|
readonly sortable?: boolean | undefined;
|
|
1536
1313
|
readonly inlineHelpText?: string | undefined;
|
|
1537
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1538
1314
|
readonly caseSensitive?: boolean | undefined;
|
|
1539
1315
|
readonly autonumberFormat?: string | undefined;
|
|
1540
1316
|
readonly index?: boolean | undefined;
|
|
@@ -1556,7 +1332,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1556
1332
|
readonly required?: boolean | undefined;
|
|
1557
1333
|
readonly multiple?: boolean | undefined;
|
|
1558
1334
|
readonly dependencies?: string[] | undefined;
|
|
1559
|
-
readonly theme?: string | undefined;
|
|
1560
1335
|
readonly externalId?: boolean | undefined;
|
|
1561
1336
|
readonly defaultValue?: unknown;
|
|
1562
1337
|
readonly group?: string | undefined;
|
|
@@ -1564,23 +1339,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1564
1339
|
readonly system?: boolean | undefined;
|
|
1565
1340
|
readonly min?: number | undefined;
|
|
1566
1341
|
readonly max?: number | undefined;
|
|
1567
|
-
readonly encryptionConfig?: {
|
|
1568
|
-
enabled: boolean;
|
|
1569
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1570
|
-
keyManagement: {
|
|
1571
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1572
|
-
keyId?: string | undefined;
|
|
1573
|
-
rotationPolicy?: {
|
|
1574
|
-
enabled: boolean;
|
|
1575
|
-
frequencyDays: number;
|
|
1576
|
-
retainOldVersions: number;
|
|
1577
|
-
autoRotate: boolean;
|
|
1578
|
-
} | undefined;
|
|
1579
|
-
};
|
|
1580
|
-
scope: "record" | "field" | "table" | "database";
|
|
1581
|
-
deterministicEncryption: boolean;
|
|
1582
|
-
searchableEncryption: boolean;
|
|
1583
|
-
} | undefined;
|
|
1584
1342
|
readonly columnName?: string | undefined;
|
|
1585
1343
|
readonly searchable?: boolean | undefined;
|
|
1586
1344
|
readonly unique?: boolean | undefined;
|
|
@@ -1589,7 +1347,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1589
1347
|
readonly scale?: number | undefined;
|
|
1590
1348
|
readonly reference?: string | undefined;
|
|
1591
1349
|
readonly referenceFilters?: string[] | undefined;
|
|
1592
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1593
1350
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1594
1351
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1595
1352
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1614,22 +1371,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1614
1371
|
relationshipField?: string | undefined;
|
|
1615
1372
|
} | undefined;
|
|
1616
1373
|
readonly language?: string | undefined;
|
|
1617
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1618
1374
|
readonly maxRating?: number | undefined;
|
|
1619
|
-
readonly allowHalf?: boolean | undefined;
|
|
1620
|
-
readonly displayMap?: boolean | undefined;
|
|
1621
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1622
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1623
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1624
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1625
|
-
readonly presetColors?: string[] | undefined;
|
|
1626
1375
|
readonly step?: number | undefined;
|
|
1627
|
-
readonly showValue?: boolean | undefined;
|
|
1628
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1629
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1630
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1631
|
-
readonly displayValue?: boolean | undefined;
|
|
1632
|
-
readonly allowScanning?: boolean | undefined;
|
|
1633
1376
|
readonly currencyConfig?: {
|
|
1634
1377
|
precision: number;
|
|
1635
1378
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1683,29 +1426,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1683
1426
|
} | undefined;
|
|
1684
1427
|
maxVersions?: number | undefined;
|
|
1685
1428
|
} | undefined;
|
|
1686
|
-
readonly
|
|
1687
|
-
field: string;
|
|
1688
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1689
|
-
preserveFormat: boolean;
|
|
1690
|
-
preserveLength: boolean;
|
|
1691
|
-
pattern?: string | undefined;
|
|
1692
|
-
roles?: string[] | undefined;
|
|
1693
|
-
exemptRoles?: string[] | undefined;
|
|
1694
|
-
} | undefined;
|
|
1695
|
-
readonly auditTrail?: boolean | undefined;
|
|
1696
|
-
readonly cached?: {
|
|
1697
|
-
enabled: boolean;
|
|
1698
|
-
ttl: number;
|
|
1699
|
-
invalidateOn: string[];
|
|
1700
|
-
} | undefined;
|
|
1701
|
-
readonly dataQuality?: {
|
|
1702
|
-
uniqueness: boolean;
|
|
1703
|
-
completeness: number;
|
|
1704
|
-
accuracy?: {
|
|
1705
|
-
source: string;
|
|
1706
|
-
threshold: number;
|
|
1707
|
-
} | undefined;
|
|
1708
|
-
} | undefined;
|
|
1429
|
+
readonly trackHistory?: boolean | undefined;
|
|
1709
1430
|
readonly visibleWhen?: {
|
|
1710
1431
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1711
1432
|
source?: string | undefined;
|
|
@@ -1744,7 +1465,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1744
1465
|
} | undefined;
|
|
1745
1466
|
readonly sortable?: boolean | undefined;
|
|
1746
1467
|
readonly inlineHelpText?: string | undefined;
|
|
1747
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1748
1468
|
readonly caseSensitive?: boolean | undefined;
|
|
1749
1469
|
readonly autonumberFormat?: string | undefined;
|
|
1750
1470
|
readonly index?: boolean | undefined;
|
|
@@ -1766,7 +1486,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1766
1486
|
readonly required?: boolean | undefined;
|
|
1767
1487
|
readonly multiple?: boolean | undefined;
|
|
1768
1488
|
readonly dependencies?: string[] | undefined;
|
|
1769
|
-
readonly theme?: string | undefined;
|
|
1770
1489
|
readonly externalId?: boolean | undefined;
|
|
1771
1490
|
readonly defaultValue?: unknown;
|
|
1772
1491
|
readonly group?: string | undefined;
|
|
@@ -1774,23 +1493,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1774
1493
|
readonly system?: boolean | undefined;
|
|
1775
1494
|
readonly min?: number | undefined;
|
|
1776
1495
|
readonly max?: number | undefined;
|
|
1777
|
-
readonly encryptionConfig?: {
|
|
1778
|
-
enabled: boolean;
|
|
1779
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1780
|
-
keyManagement: {
|
|
1781
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1782
|
-
keyId?: string | undefined;
|
|
1783
|
-
rotationPolicy?: {
|
|
1784
|
-
enabled: boolean;
|
|
1785
|
-
frequencyDays: number;
|
|
1786
|
-
retainOldVersions: number;
|
|
1787
|
-
autoRotate: boolean;
|
|
1788
|
-
} | undefined;
|
|
1789
|
-
};
|
|
1790
|
-
scope: "record" | "field" | "table" | "database";
|
|
1791
|
-
deterministicEncryption: boolean;
|
|
1792
|
-
searchableEncryption: boolean;
|
|
1793
|
-
} | undefined;
|
|
1794
1496
|
readonly columnName?: string | undefined;
|
|
1795
1497
|
readonly searchable?: boolean | undefined;
|
|
1796
1498
|
readonly unique?: boolean | undefined;
|
|
@@ -1799,7 +1501,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1799
1501
|
readonly scale?: number | undefined;
|
|
1800
1502
|
readonly reference?: string | undefined;
|
|
1801
1503
|
readonly referenceFilters?: string[] | undefined;
|
|
1802
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1803
1504
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1804
1505
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1805
1506
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1824,22 +1525,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1824
1525
|
relationshipField?: string | undefined;
|
|
1825
1526
|
} | undefined;
|
|
1826
1527
|
readonly language?: string | undefined;
|
|
1827
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1828
1528
|
readonly maxRating?: number | undefined;
|
|
1829
|
-
readonly allowHalf?: boolean | undefined;
|
|
1830
|
-
readonly displayMap?: boolean | undefined;
|
|
1831
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1832
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1833
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1834
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1835
|
-
readonly presetColors?: string[] | undefined;
|
|
1836
1529
|
readonly step?: number | undefined;
|
|
1837
|
-
readonly showValue?: boolean | undefined;
|
|
1838
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1839
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1840
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1841
|
-
readonly displayValue?: boolean | undefined;
|
|
1842
|
-
readonly allowScanning?: boolean | undefined;
|
|
1843
1530
|
readonly currencyConfig?: {
|
|
1844
1531
|
precision: number;
|
|
1845
1532
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1893,29 +1580,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1893
1580
|
} | undefined;
|
|
1894
1581
|
maxVersions?: number | undefined;
|
|
1895
1582
|
} | undefined;
|
|
1896
|
-
readonly
|
|
1897
|
-
field: string;
|
|
1898
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1899
|
-
preserveFormat: boolean;
|
|
1900
|
-
preserveLength: boolean;
|
|
1901
|
-
pattern?: string | undefined;
|
|
1902
|
-
roles?: string[] | undefined;
|
|
1903
|
-
exemptRoles?: string[] | undefined;
|
|
1904
|
-
} | undefined;
|
|
1905
|
-
readonly auditTrail?: boolean | undefined;
|
|
1906
|
-
readonly cached?: {
|
|
1907
|
-
enabled: boolean;
|
|
1908
|
-
ttl: number;
|
|
1909
|
-
invalidateOn: string[];
|
|
1910
|
-
} | undefined;
|
|
1911
|
-
readonly dataQuality?: {
|
|
1912
|
-
uniqueness: boolean;
|
|
1913
|
-
completeness: number;
|
|
1914
|
-
accuracy?: {
|
|
1915
|
-
source: string;
|
|
1916
|
-
threshold: number;
|
|
1917
|
-
} | undefined;
|
|
1918
|
-
} | undefined;
|
|
1583
|
+
readonly trackHistory?: boolean | undefined;
|
|
1919
1584
|
readonly visibleWhen?: {
|
|
1920
1585
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1921
1586
|
source?: string | undefined;
|
|
@@ -1954,7 +1619,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1954
1619
|
} | undefined;
|
|
1955
1620
|
readonly sortable?: boolean | undefined;
|
|
1956
1621
|
readonly inlineHelpText?: string | undefined;
|
|
1957
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1958
1622
|
readonly caseSensitive?: boolean | undefined;
|
|
1959
1623
|
readonly autonumberFormat?: string | undefined;
|
|
1960
1624
|
readonly index?: boolean | undefined;
|
|
@@ -1976,7 +1640,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1976
1640
|
readonly required?: boolean | undefined;
|
|
1977
1641
|
readonly multiple?: boolean | undefined;
|
|
1978
1642
|
readonly dependencies?: string[] | undefined;
|
|
1979
|
-
readonly theme?: string | undefined;
|
|
1980
1643
|
readonly externalId?: boolean | undefined;
|
|
1981
1644
|
readonly defaultValue?: unknown;
|
|
1982
1645
|
readonly group?: string | undefined;
|
|
@@ -1984,23 +1647,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1984
1647
|
readonly system?: boolean | undefined;
|
|
1985
1648
|
readonly min?: number | undefined;
|
|
1986
1649
|
readonly max?: number | undefined;
|
|
1987
|
-
readonly encryptionConfig?: {
|
|
1988
|
-
enabled: boolean;
|
|
1989
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1990
|
-
keyManagement: {
|
|
1991
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1992
|
-
keyId?: string | undefined;
|
|
1993
|
-
rotationPolicy?: {
|
|
1994
|
-
enabled: boolean;
|
|
1995
|
-
frequencyDays: number;
|
|
1996
|
-
retainOldVersions: number;
|
|
1997
|
-
autoRotate: boolean;
|
|
1998
|
-
} | undefined;
|
|
1999
|
-
};
|
|
2000
|
-
scope: "record" | "field" | "table" | "database";
|
|
2001
|
-
deterministicEncryption: boolean;
|
|
2002
|
-
searchableEncryption: boolean;
|
|
2003
|
-
} | undefined;
|
|
2004
1650
|
readonly columnName?: string | undefined;
|
|
2005
1651
|
readonly searchable?: boolean | undefined;
|
|
2006
1652
|
readonly unique?: boolean | undefined;
|
|
@@ -2009,7 +1655,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2009
1655
|
readonly scale?: number | undefined;
|
|
2010
1656
|
reference: string;
|
|
2011
1657
|
readonly referenceFilters?: string[] | undefined;
|
|
2012
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2013
1658
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2014
1659
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2015
1660
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2034,22 +1679,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2034
1679
|
relationshipField?: string | undefined;
|
|
2035
1680
|
} | undefined;
|
|
2036
1681
|
readonly language?: string | undefined;
|
|
2037
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2038
1682
|
readonly maxRating?: number | undefined;
|
|
2039
|
-
readonly allowHalf?: boolean | undefined;
|
|
2040
|
-
readonly displayMap?: boolean | undefined;
|
|
2041
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2042
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2043
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2044
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2045
|
-
readonly presetColors?: string[] | undefined;
|
|
2046
1683
|
readonly step?: number | undefined;
|
|
2047
|
-
readonly showValue?: boolean | undefined;
|
|
2048
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2049
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2050
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2051
|
-
readonly displayValue?: boolean | undefined;
|
|
2052
|
-
readonly allowScanning?: boolean | undefined;
|
|
2053
1684
|
readonly currencyConfig?: {
|
|
2054
1685
|
precision: number;
|
|
2055
1686
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2103,29 +1734,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2103
1734
|
} | undefined;
|
|
2104
1735
|
maxVersions?: number | undefined;
|
|
2105
1736
|
} | undefined;
|
|
2106
|
-
readonly
|
|
2107
|
-
field: string;
|
|
2108
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2109
|
-
preserveFormat: boolean;
|
|
2110
|
-
preserveLength: boolean;
|
|
2111
|
-
pattern?: string | undefined;
|
|
2112
|
-
roles?: string[] | undefined;
|
|
2113
|
-
exemptRoles?: string[] | undefined;
|
|
2114
|
-
} | undefined;
|
|
2115
|
-
readonly auditTrail?: boolean | undefined;
|
|
2116
|
-
readonly cached?: {
|
|
2117
|
-
enabled: boolean;
|
|
2118
|
-
ttl: number;
|
|
2119
|
-
invalidateOn: string[];
|
|
2120
|
-
} | undefined;
|
|
2121
|
-
readonly dataQuality?: {
|
|
2122
|
-
uniqueness: boolean;
|
|
2123
|
-
completeness: number;
|
|
2124
|
-
accuracy?: {
|
|
2125
|
-
source: string;
|
|
2126
|
-
threshold: number;
|
|
2127
|
-
} | undefined;
|
|
2128
|
-
} | undefined;
|
|
1737
|
+
readonly trackHistory?: boolean | undefined;
|
|
2129
1738
|
readonly visibleWhen?: {
|
|
2130
1739
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2131
1740
|
source?: string | undefined;
|
|
@@ -2164,7 +1773,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2164
1773
|
} | undefined;
|
|
2165
1774
|
readonly sortable?: boolean | undefined;
|
|
2166
1775
|
readonly inlineHelpText?: string | undefined;
|
|
2167
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2168
1776
|
readonly caseSensitive?: boolean | undefined;
|
|
2169
1777
|
readonly autonumberFormat?: string | undefined;
|
|
2170
1778
|
readonly index?: boolean | undefined;
|
|
@@ -2186,7 +1794,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2186
1794
|
readonly required?: boolean | undefined;
|
|
2187
1795
|
readonly multiple?: boolean | undefined;
|
|
2188
1796
|
readonly dependencies?: string[] | undefined;
|
|
2189
|
-
readonly theme?: string | undefined;
|
|
2190
1797
|
readonly externalId?: boolean | undefined;
|
|
2191
1798
|
readonly defaultValue?: unknown;
|
|
2192
1799
|
readonly group?: string | undefined;
|
|
@@ -2194,23 +1801,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2194
1801
|
readonly system?: boolean | undefined;
|
|
2195
1802
|
readonly min?: number | undefined;
|
|
2196
1803
|
readonly max?: number | undefined;
|
|
2197
|
-
readonly encryptionConfig?: {
|
|
2198
|
-
enabled: boolean;
|
|
2199
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2200
|
-
keyManagement: {
|
|
2201
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2202
|
-
keyId?: string | undefined;
|
|
2203
|
-
rotationPolicy?: {
|
|
2204
|
-
enabled: boolean;
|
|
2205
|
-
frequencyDays: number;
|
|
2206
|
-
retainOldVersions: number;
|
|
2207
|
-
autoRotate: boolean;
|
|
2208
|
-
} | undefined;
|
|
2209
|
-
};
|
|
2210
|
-
scope: "record" | "field" | "table" | "database";
|
|
2211
|
-
deterministicEncryption: boolean;
|
|
2212
|
-
searchableEncryption: boolean;
|
|
2213
|
-
} | undefined;
|
|
2214
1804
|
readonly columnName?: string | undefined;
|
|
2215
1805
|
readonly searchable?: boolean | undefined;
|
|
2216
1806
|
readonly unique?: boolean | undefined;
|
|
@@ -2219,7 +1809,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2219
1809
|
readonly scale?: number | undefined;
|
|
2220
1810
|
readonly reference?: string | undefined;
|
|
2221
1811
|
readonly referenceFilters?: string[] | undefined;
|
|
2222
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2223
1812
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2224
1813
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2225
1814
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2244,22 +1833,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2244
1833
|
relationshipField?: string | undefined;
|
|
2245
1834
|
} | undefined;
|
|
2246
1835
|
readonly language?: string | undefined;
|
|
2247
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2248
1836
|
readonly maxRating?: number | undefined;
|
|
2249
|
-
readonly allowHalf?: boolean | undefined;
|
|
2250
|
-
readonly displayMap?: boolean | undefined;
|
|
2251
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2252
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2253
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2254
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2255
|
-
readonly presetColors?: string[] | undefined;
|
|
2256
1837
|
readonly step?: number | undefined;
|
|
2257
|
-
readonly showValue?: boolean | undefined;
|
|
2258
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2259
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2260
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2261
|
-
readonly displayValue?: boolean | undefined;
|
|
2262
|
-
readonly allowScanning?: boolean | undefined;
|
|
2263
1838
|
readonly currencyConfig?: {
|
|
2264
1839
|
precision: number;
|
|
2265
1840
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2313,29 +1888,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2313
1888
|
} | undefined;
|
|
2314
1889
|
maxVersions?: number | undefined;
|
|
2315
1890
|
} | undefined;
|
|
2316
|
-
readonly
|
|
2317
|
-
field: string;
|
|
2318
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2319
|
-
preserveFormat: boolean;
|
|
2320
|
-
preserveLength: boolean;
|
|
2321
|
-
pattern?: string | undefined;
|
|
2322
|
-
roles?: string[] | undefined;
|
|
2323
|
-
exemptRoles?: string[] | undefined;
|
|
2324
|
-
} | undefined;
|
|
2325
|
-
readonly auditTrail?: boolean | undefined;
|
|
2326
|
-
readonly cached?: {
|
|
2327
|
-
enabled: boolean;
|
|
2328
|
-
ttl: number;
|
|
2329
|
-
invalidateOn: string[];
|
|
2330
|
-
} | undefined;
|
|
2331
|
-
readonly dataQuality?: {
|
|
2332
|
-
uniqueness: boolean;
|
|
2333
|
-
completeness: number;
|
|
2334
|
-
accuracy?: {
|
|
2335
|
-
source: string;
|
|
2336
|
-
threshold: number;
|
|
2337
|
-
} | undefined;
|
|
2338
|
-
} | undefined;
|
|
1891
|
+
readonly trackHistory?: boolean | undefined;
|
|
2339
1892
|
readonly visibleWhen?: {
|
|
2340
1893
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2341
1894
|
source?: string | undefined;
|
|
@@ -2374,7 +1927,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2374
1927
|
} | undefined;
|
|
2375
1928
|
readonly sortable?: boolean | undefined;
|
|
2376
1929
|
readonly inlineHelpText?: string | undefined;
|
|
2377
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2378
1930
|
readonly caseSensitive?: boolean | undefined;
|
|
2379
1931
|
readonly autonumberFormat?: string | undefined;
|
|
2380
1932
|
readonly index?: boolean | undefined;
|
|
@@ -2396,7 +1948,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2396
1948
|
readonly required?: boolean | undefined;
|
|
2397
1949
|
readonly multiple?: boolean | undefined;
|
|
2398
1950
|
readonly dependencies?: string[] | undefined;
|
|
2399
|
-
readonly theme?: string | undefined;
|
|
2400
1951
|
readonly externalId?: boolean | undefined;
|
|
2401
1952
|
readonly defaultValue?: unknown;
|
|
2402
1953
|
readonly group?: string | undefined;
|
|
@@ -2404,23 +1955,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2404
1955
|
readonly system?: boolean | undefined;
|
|
2405
1956
|
readonly min?: number | undefined;
|
|
2406
1957
|
readonly max?: number | undefined;
|
|
2407
|
-
readonly encryptionConfig?: {
|
|
2408
|
-
enabled: boolean;
|
|
2409
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2410
|
-
keyManagement: {
|
|
2411
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2412
|
-
keyId?: string | undefined;
|
|
2413
|
-
rotationPolicy?: {
|
|
2414
|
-
enabled: boolean;
|
|
2415
|
-
frequencyDays: number;
|
|
2416
|
-
retainOldVersions: number;
|
|
2417
|
-
autoRotate: boolean;
|
|
2418
|
-
} | undefined;
|
|
2419
|
-
};
|
|
2420
|
-
scope: "record" | "field" | "table" | "database";
|
|
2421
|
-
deterministicEncryption: boolean;
|
|
2422
|
-
searchableEncryption: boolean;
|
|
2423
|
-
} | undefined;
|
|
2424
1958
|
readonly columnName?: string | undefined;
|
|
2425
1959
|
readonly searchable?: boolean | undefined;
|
|
2426
1960
|
readonly unique?: boolean | undefined;
|
|
@@ -2429,7 +1963,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2429
1963
|
readonly scale?: number | undefined;
|
|
2430
1964
|
readonly reference?: string | undefined;
|
|
2431
1965
|
readonly referenceFilters?: string[] | undefined;
|
|
2432
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2433
1966
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2434
1967
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2435
1968
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2454,22 +1987,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2454
1987
|
relationshipField?: string | undefined;
|
|
2455
1988
|
} | undefined;
|
|
2456
1989
|
readonly language?: string | undefined;
|
|
2457
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2458
1990
|
readonly maxRating?: number | undefined;
|
|
2459
|
-
readonly allowHalf?: boolean | undefined;
|
|
2460
|
-
readonly displayMap?: boolean | undefined;
|
|
2461
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2462
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2463
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2464
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2465
|
-
readonly presetColors?: string[] | undefined;
|
|
2466
1991
|
readonly step?: number | undefined;
|
|
2467
|
-
readonly showValue?: boolean | undefined;
|
|
2468
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2469
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2470
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2471
|
-
readonly displayValue?: boolean | undefined;
|
|
2472
|
-
readonly allowScanning?: boolean | undefined;
|
|
2473
1992
|
readonly currencyConfig?: {
|
|
2474
1993
|
precision: number;
|
|
2475
1994
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2523,29 +2042,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2523
2042
|
} | undefined;
|
|
2524
2043
|
maxVersions?: number | undefined;
|
|
2525
2044
|
} | undefined;
|
|
2526
|
-
readonly
|
|
2527
|
-
field: string;
|
|
2528
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2529
|
-
preserveFormat: boolean;
|
|
2530
|
-
preserveLength: boolean;
|
|
2531
|
-
pattern?: string | undefined;
|
|
2532
|
-
roles?: string[] | undefined;
|
|
2533
|
-
exemptRoles?: string[] | undefined;
|
|
2534
|
-
} | undefined;
|
|
2535
|
-
readonly auditTrail?: boolean | undefined;
|
|
2536
|
-
readonly cached?: {
|
|
2537
|
-
enabled: boolean;
|
|
2538
|
-
ttl: number;
|
|
2539
|
-
invalidateOn: string[];
|
|
2540
|
-
} | undefined;
|
|
2541
|
-
readonly dataQuality?: {
|
|
2542
|
-
uniqueness: boolean;
|
|
2543
|
-
completeness: number;
|
|
2544
|
-
accuracy?: {
|
|
2545
|
-
source: string;
|
|
2546
|
-
threshold: number;
|
|
2547
|
-
} | undefined;
|
|
2548
|
-
} | undefined;
|
|
2045
|
+
readonly trackHistory?: boolean | undefined;
|
|
2549
2046
|
readonly visibleWhen?: {
|
|
2550
2047
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2551
2048
|
source?: string | undefined;
|
|
@@ -2584,7 +2081,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2584
2081
|
} | undefined;
|
|
2585
2082
|
readonly sortable?: boolean | undefined;
|
|
2586
2083
|
readonly inlineHelpText?: string | undefined;
|
|
2587
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2588
2084
|
readonly caseSensitive?: boolean | undefined;
|
|
2589
2085
|
readonly autonumberFormat?: string | undefined;
|
|
2590
2086
|
readonly index?: boolean | undefined;
|
|
@@ -2606,7 +2102,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2606
2102
|
readonly required?: boolean | undefined;
|
|
2607
2103
|
readonly multiple?: boolean | undefined;
|
|
2608
2104
|
readonly dependencies?: string[] | undefined;
|
|
2609
|
-
readonly theme?: string | undefined;
|
|
2610
2105
|
readonly externalId?: boolean | undefined;
|
|
2611
2106
|
readonly defaultValue?: unknown;
|
|
2612
2107
|
readonly group?: string | undefined;
|
|
@@ -2614,23 +2109,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2614
2109
|
readonly system?: boolean | undefined;
|
|
2615
2110
|
readonly min?: number | undefined;
|
|
2616
2111
|
readonly max?: number | undefined;
|
|
2617
|
-
readonly encryptionConfig?: {
|
|
2618
|
-
enabled: boolean;
|
|
2619
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2620
|
-
keyManagement: {
|
|
2621
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2622
|
-
keyId?: string | undefined;
|
|
2623
|
-
rotationPolicy?: {
|
|
2624
|
-
enabled: boolean;
|
|
2625
|
-
frequencyDays: number;
|
|
2626
|
-
retainOldVersions: number;
|
|
2627
|
-
autoRotate: boolean;
|
|
2628
|
-
} | undefined;
|
|
2629
|
-
};
|
|
2630
|
-
scope: "record" | "field" | "table" | "database";
|
|
2631
|
-
deterministicEncryption: boolean;
|
|
2632
|
-
searchableEncryption: boolean;
|
|
2633
|
-
} | undefined;
|
|
2634
2112
|
readonly columnName?: string | undefined;
|
|
2635
2113
|
readonly searchable?: boolean | undefined;
|
|
2636
2114
|
readonly unique?: boolean | undefined;
|
|
@@ -2639,7 +2117,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2639
2117
|
readonly scale?: number | undefined;
|
|
2640
2118
|
readonly reference?: string | undefined;
|
|
2641
2119
|
readonly referenceFilters?: string[] | undefined;
|
|
2642
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2643
2120
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2644
2121
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2645
2122
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2664,22 +2141,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2664
2141
|
relationshipField?: string | undefined;
|
|
2665
2142
|
} | undefined;
|
|
2666
2143
|
readonly language?: string | undefined;
|
|
2667
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2668
2144
|
readonly maxRating?: number | undefined;
|
|
2669
|
-
readonly allowHalf?: boolean | undefined;
|
|
2670
|
-
readonly displayMap?: boolean | undefined;
|
|
2671
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2672
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2673
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2674
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2675
|
-
readonly presetColors?: string[] | undefined;
|
|
2676
2145
|
readonly step?: number | undefined;
|
|
2677
|
-
readonly showValue?: boolean | undefined;
|
|
2678
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2679
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2680
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2681
|
-
readonly displayValue?: boolean | undefined;
|
|
2682
|
-
readonly allowScanning?: boolean | undefined;
|
|
2683
2146
|
readonly currencyConfig?: {
|
|
2684
2147
|
precision: number;
|
|
2685
2148
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2733,29 +2196,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2733
2196
|
} | undefined;
|
|
2734
2197
|
maxVersions?: number | undefined;
|
|
2735
2198
|
} | undefined;
|
|
2736
|
-
readonly
|
|
2737
|
-
field: string;
|
|
2738
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2739
|
-
preserveFormat: boolean;
|
|
2740
|
-
preserveLength: boolean;
|
|
2741
|
-
pattern?: string | undefined;
|
|
2742
|
-
roles?: string[] | undefined;
|
|
2743
|
-
exemptRoles?: string[] | undefined;
|
|
2744
|
-
} | undefined;
|
|
2745
|
-
readonly auditTrail?: boolean | undefined;
|
|
2746
|
-
readonly cached?: {
|
|
2747
|
-
enabled: boolean;
|
|
2748
|
-
ttl: number;
|
|
2749
|
-
invalidateOn: string[];
|
|
2750
|
-
} | undefined;
|
|
2751
|
-
readonly dataQuality?: {
|
|
2752
|
-
uniqueness: boolean;
|
|
2753
|
-
completeness: number;
|
|
2754
|
-
accuracy?: {
|
|
2755
|
-
source: string;
|
|
2756
|
-
threshold: number;
|
|
2757
|
-
} | undefined;
|
|
2758
|
-
} | undefined;
|
|
2199
|
+
readonly trackHistory?: boolean | undefined;
|
|
2759
2200
|
readonly visibleWhen?: {
|
|
2760
2201
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2761
2202
|
source?: string | undefined;
|
|
@@ -2794,7 +2235,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2794
2235
|
} | undefined;
|
|
2795
2236
|
readonly sortable?: boolean | undefined;
|
|
2796
2237
|
readonly inlineHelpText?: string | undefined;
|
|
2797
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2798
2238
|
readonly caseSensitive?: boolean | undefined;
|
|
2799
2239
|
readonly autonumberFormat?: string | undefined;
|
|
2800
2240
|
readonly index?: boolean | undefined;
|
|
@@ -2816,7 +2256,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2816
2256
|
readonly required?: boolean | undefined;
|
|
2817
2257
|
readonly multiple?: boolean | undefined;
|
|
2818
2258
|
readonly dependencies?: string[] | undefined;
|
|
2819
|
-
readonly theme?: string | undefined;
|
|
2820
2259
|
readonly externalId?: boolean | undefined;
|
|
2821
2260
|
readonly defaultValue?: unknown;
|
|
2822
2261
|
readonly group?: string | undefined;
|
|
@@ -2824,23 +2263,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2824
2263
|
readonly system?: boolean | undefined;
|
|
2825
2264
|
readonly min?: number | undefined;
|
|
2826
2265
|
readonly max?: number | undefined;
|
|
2827
|
-
readonly encryptionConfig?: {
|
|
2828
|
-
enabled: boolean;
|
|
2829
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2830
|
-
keyManagement: {
|
|
2831
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2832
|
-
keyId?: string | undefined;
|
|
2833
|
-
rotationPolicy?: {
|
|
2834
|
-
enabled: boolean;
|
|
2835
|
-
frequencyDays: number;
|
|
2836
|
-
retainOldVersions: number;
|
|
2837
|
-
autoRotate: boolean;
|
|
2838
|
-
} | undefined;
|
|
2839
|
-
};
|
|
2840
|
-
scope: "record" | "field" | "table" | "database";
|
|
2841
|
-
deterministicEncryption: boolean;
|
|
2842
|
-
searchableEncryption: boolean;
|
|
2843
|
-
} | undefined;
|
|
2844
2266
|
readonly columnName?: string | undefined;
|
|
2845
2267
|
readonly searchable?: boolean | undefined;
|
|
2846
2268
|
readonly unique?: boolean | undefined;
|
|
@@ -2849,7 +2271,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2849
2271
|
readonly scale?: number | undefined;
|
|
2850
2272
|
readonly reference?: string | undefined;
|
|
2851
2273
|
readonly referenceFilters?: string[] | undefined;
|
|
2852
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2853
2274
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2854
2275
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2855
2276
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2874,22 +2295,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2874
2295
|
relationshipField?: string | undefined;
|
|
2875
2296
|
} | undefined;
|
|
2876
2297
|
readonly language?: string | undefined;
|
|
2877
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2878
2298
|
readonly maxRating?: number | undefined;
|
|
2879
|
-
readonly allowHalf?: boolean | undefined;
|
|
2880
|
-
readonly displayMap?: boolean | undefined;
|
|
2881
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2882
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2883
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2884
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2885
|
-
readonly presetColors?: string[] | undefined;
|
|
2886
2299
|
readonly step?: number | undefined;
|
|
2887
|
-
readonly showValue?: boolean | undefined;
|
|
2888
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2889
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2890
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2891
|
-
readonly displayValue?: boolean | undefined;
|
|
2892
|
-
readonly allowScanning?: boolean | undefined;
|
|
2893
2300
|
readonly currencyConfig?: {
|
|
2894
2301
|
precision: number;
|
|
2895
2302
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2943,29 +2350,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2943
2350
|
} | undefined;
|
|
2944
2351
|
maxVersions?: number | undefined;
|
|
2945
2352
|
} | undefined;
|
|
2946
|
-
readonly
|
|
2947
|
-
field: string;
|
|
2948
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2949
|
-
preserveFormat: boolean;
|
|
2950
|
-
preserveLength: boolean;
|
|
2951
|
-
pattern?: string | undefined;
|
|
2952
|
-
roles?: string[] | undefined;
|
|
2953
|
-
exemptRoles?: string[] | undefined;
|
|
2954
|
-
} | undefined;
|
|
2955
|
-
readonly auditTrail?: boolean | undefined;
|
|
2956
|
-
readonly cached?: {
|
|
2957
|
-
enabled: boolean;
|
|
2958
|
-
ttl: number;
|
|
2959
|
-
invalidateOn: string[];
|
|
2960
|
-
} | undefined;
|
|
2961
|
-
readonly dataQuality?: {
|
|
2962
|
-
uniqueness: boolean;
|
|
2963
|
-
completeness: number;
|
|
2964
|
-
accuracy?: {
|
|
2965
|
-
source: string;
|
|
2966
|
-
threshold: number;
|
|
2967
|
-
} | undefined;
|
|
2968
|
-
} | undefined;
|
|
2353
|
+
readonly trackHistory?: boolean | undefined;
|
|
2969
2354
|
readonly visibleWhen?: {
|
|
2970
2355
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2971
2356
|
source?: string | undefined;
|
|
@@ -3004,7 +2389,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3004
2389
|
} | undefined;
|
|
3005
2390
|
readonly sortable?: boolean | undefined;
|
|
3006
2391
|
readonly inlineHelpText?: string | undefined;
|
|
3007
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3008
2392
|
readonly caseSensitive?: boolean | undefined;
|
|
3009
2393
|
readonly autonumberFormat?: string | undefined;
|
|
3010
2394
|
readonly index?: boolean | undefined;
|
|
@@ -3026,7 +2410,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3026
2410
|
readonly required?: boolean | undefined;
|
|
3027
2411
|
readonly multiple?: boolean | undefined;
|
|
3028
2412
|
readonly dependencies?: string[] | undefined;
|
|
3029
|
-
readonly theme?: string | undefined;
|
|
3030
2413
|
readonly externalId?: boolean | undefined;
|
|
3031
2414
|
readonly defaultValue?: unknown;
|
|
3032
2415
|
readonly group?: string | undefined;
|
|
@@ -3034,23 +2417,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3034
2417
|
readonly system?: boolean | undefined;
|
|
3035
2418
|
readonly min?: number | undefined;
|
|
3036
2419
|
readonly max?: number | undefined;
|
|
3037
|
-
readonly encryptionConfig?: {
|
|
3038
|
-
enabled: boolean;
|
|
3039
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3040
|
-
keyManagement: {
|
|
3041
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3042
|
-
keyId?: string | undefined;
|
|
3043
|
-
rotationPolicy?: {
|
|
3044
|
-
enabled: boolean;
|
|
3045
|
-
frequencyDays: number;
|
|
3046
|
-
retainOldVersions: number;
|
|
3047
|
-
autoRotate: boolean;
|
|
3048
|
-
} | undefined;
|
|
3049
|
-
};
|
|
3050
|
-
scope: "record" | "field" | "table" | "database";
|
|
3051
|
-
deterministicEncryption: boolean;
|
|
3052
|
-
searchableEncryption: boolean;
|
|
3053
|
-
} | undefined;
|
|
3054
2420
|
readonly columnName?: string | undefined;
|
|
3055
2421
|
readonly searchable?: boolean | undefined;
|
|
3056
2422
|
readonly unique?: boolean | undefined;
|
|
@@ -3059,7 +2425,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3059
2425
|
readonly scale?: number | undefined;
|
|
3060
2426
|
readonly reference?: string | undefined;
|
|
3061
2427
|
readonly referenceFilters?: string[] | undefined;
|
|
3062
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3063
2428
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3064
2429
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3065
2430
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3084,22 +2449,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3084
2449
|
relationshipField?: string | undefined;
|
|
3085
2450
|
} | undefined;
|
|
3086
2451
|
readonly language?: string | undefined;
|
|
3087
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3088
2452
|
readonly maxRating?: number | undefined;
|
|
3089
|
-
readonly allowHalf?: boolean | undefined;
|
|
3090
|
-
readonly displayMap?: boolean | undefined;
|
|
3091
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
3092
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3093
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3094
|
-
readonly allowAlpha?: boolean | undefined;
|
|
3095
|
-
readonly presetColors?: string[] | undefined;
|
|
3096
2453
|
readonly step?: number | undefined;
|
|
3097
|
-
readonly showValue?: boolean | undefined;
|
|
3098
|
-
readonly marks?: Record<string, string> | undefined;
|
|
3099
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3100
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3101
|
-
readonly displayValue?: boolean | undefined;
|
|
3102
|
-
readonly allowScanning?: boolean | undefined;
|
|
3103
2454
|
readonly currencyConfig?: {
|
|
3104
2455
|
precision: number;
|
|
3105
2456
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3153,29 +2504,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3153
2504
|
} | undefined;
|
|
3154
2505
|
maxVersions?: number | undefined;
|
|
3155
2506
|
} | undefined;
|
|
3156
|
-
readonly
|
|
3157
|
-
field: string;
|
|
3158
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3159
|
-
preserveFormat: boolean;
|
|
3160
|
-
preserveLength: boolean;
|
|
3161
|
-
pattern?: string | undefined;
|
|
3162
|
-
roles?: string[] | undefined;
|
|
3163
|
-
exemptRoles?: string[] | undefined;
|
|
3164
|
-
} | undefined;
|
|
3165
|
-
readonly auditTrail?: boolean | undefined;
|
|
3166
|
-
readonly cached?: {
|
|
3167
|
-
enabled: boolean;
|
|
3168
|
-
ttl: number;
|
|
3169
|
-
invalidateOn: string[];
|
|
3170
|
-
} | undefined;
|
|
3171
|
-
readonly dataQuality?: {
|
|
3172
|
-
uniqueness: boolean;
|
|
3173
|
-
completeness: number;
|
|
3174
|
-
accuracy?: {
|
|
3175
|
-
source: string;
|
|
3176
|
-
threshold: number;
|
|
3177
|
-
} | undefined;
|
|
3178
|
-
} | undefined;
|
|
2507
|
+
readonly trackHistory?: boolean | undefined;
|
|
3179
2508
|
readonly visibleWhen?: {
|
|
3180
2509
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3181
2510
|
source?: string | undefined;
|
|
@@ -3214,7 +2543,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3214
2543
|
} | undefined;
|
|
3215
2544
|
readonly sortable?: boolean | undefined;
|
|
3216
2545
|
readonly inlineHelpText?: string | undefined;
|
|
3217
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3218
2546
|
readonly caseSensitive?: boolean | undefined;
|
|
3219
2547
|
readonly autonumberFormat?: string | undefined;
|
|
3220
2548
|
readonly index?: boolean | undefined;
|
|
@@ -3236,7 +2564,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3236
2564
|
readonly required?: boolean | undefined;
|
|
3237
2565
|
readonly multiple?: boolean | undefined;
|
|
3238
2566
|
readonly dependencies?: string[] | undefined;
|
|
3239
|
-
readonly theme?: string | undefined;
|
|
3240
2567
|
readonly externalId?: boolean | undefined;
|
|
3241
2568
|
readonly defaultValue?: unknown;
|
|
3242
2569
|
readonly group?: string | undefined;
|
|
@@ -3244,23 +2571,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3244
2571
|
readonly system?: boolean | undefined;
|
|
3245
2572
|
readonly min?: number | undefined;
|
|
3246
2573
|
readonly max?: number | undefined;
|
|
3247
|
-
readonly encryptionConfig?: {
|
|
3248
|
-
enabled: boolean;
|
|
3249
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3250
|
-
keyManagement: {
|
|
3251
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3252
|
-
keyId?: string | undefined;
|
|
3253
|
-
rotationPolicy?: {
|
|
3254
|
-
enabled: boolean;
|
|
3255
|
-
frequencyDays: number;
|
|
3256
|
-
retainOldVersions: number;
|
|
3257
|
-
autoRotate: boolean;
|
|
3258
|
-
} | undefined;
|
|
3259
|
-
};
|
|
3260
|
-
scope: "record" | "field" | "table" | "database";
|
|
3261
|
-
deterministicEncryption: boolean;
|
|
3262
|
-
searchableEncryption: boolean;
|
|
3263
|
-
} | undefined;
|
|
3264
2574
|
readonly columnName?: string | undefined;
|
|
3265
2575
|
readonly searchable?: boolean | undefined;
|
|
3266
2576
|
readonly unique?: boolean | undefined;
|
|
@@ -3269,7 +2579,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3269
2579
|
readonly scale?: number | undefined;
|
|
3270
2580
|
readonly reference?: string | undefined;
|
|
3271
2581
|
readonly referenceFilters?: string[] | undefined;
|
|
3272
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3273
2582
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3274
2583
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3275
2584
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3294,22 +2603,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3294
2603
|
relationshipField?: string | undefined;
|
|
3295
2604
|
} | undefined;
|
|
3296
2605
|
readonly language?: string | undefined;
|
|
3297
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3298
2606
|
readonly maxRating?: number | undefined;
|
|
3299
|
-
readonly allowHalf?: boolean | undefined;
|
|
3300
|
-
readonly displayMap?: boolean | undefined;
|
|
3301
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
3302
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3303
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3304
|
-
readonly allowAlpha?: boolean | undefined;
|
|
3305
|
-
readonly presetColors?: string[] | undefined;
|
|
3306
2607
|
readonly step?: number | undefined;
|
|
3307
|
-
readonly showValue?: boolean | undefined;
|
|
3308
|
-
readonly marks?: Record<string, string> | undefined;
|
|
3309
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3310
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3311
|
-
readonly displayValue?: boolean | undefined;
|
|
3312
|
-
readonly allowScanning?: boolean | undefined;
|
|
3313
2608
|
readonly currencyConfig?: {
|
|
3314
2609
|
precision: number;
|
|
3315
2610
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3363,29 +2658,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3363
2658
|
} | undefined;
|
|
3364
2659
|
maxVersions?: number | undefined;
|
|
3365
2660
|
} | undefined;
|
|
3366
|
-
readonly
|
|
3367
|
-
field: string;
|
|
3368
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3369
|
-
preserveFormat: boolean;
|
|
3370
|
-
preserveLength: boolean;
|
|
3371
|
-
pattern?: string | undefined;
|
|
3372
|
-
roles?: string[] | undefined;
|
|
3373
|
-
exemptRoles?: string[] | undefined;
|
|
3374
|
-
} | undefined;
|
|
3375
|
-
readonly auditTrail?: boolean | undefined;
|
|
3376
|
-
readonly cached?: {
|
|
3377
|
-
enabled: boolean;
|
|
3378
|
-
ttl: number;
|
|
3379
|
-
invalidateOn: string[];
|
|
3380
|
-
} | undefined;
|
|
3381
|
-
readonly dataQuality?: {
|
|
3382
|
-
uniqueness: boolean;
|
|
3383
|
-
completeness: number;
|
|
3384
|
-
accuracy?: {
|
|
3385
|
-
source: string;
|
|
3386
|
-
threshold: number;
|
|
3387
|
-
} | undefined;
|
|
3388
|
-
} | undefined;
|
|
2661
|
+
readonly trackHistory?: boolean | undefined;
|
|
3389
2662
|
readonly visibleWhen?: {
|
|
3390
2663
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3391
2664
|
source?: string | undefined;
|
|
@@ -3424,7 +2697,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3424
2697
|
} | undefined;
|
|
3425
2698
|
readonly sortable?: boolean | undefined;
|
|
3426
2699
|
readonly inlineHelpText?: string | undefined;
|
|
3427
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3428
2700
|
readonly caseSensitive?: boolean | undefined;
|
|
3429
2701
|
readonly autonumberFormat?: string | undefined;
|
|
3430
2702
|
readonly index?: boolean | undefined;
|
|
@@ -3446,7 +2718,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3446
2718
|
readonly required?: boolean | undefined;
|
|
3447
2719
|
readonly multiple?: boolean | undefined;
|
|
3448
2720
|
readonly dependencies?: string[] | undefined;
|
|
3449
|
-
readonly theme?: string | undefined;
|
|
3450
2721
|
readonly externalId?: boolean | undefined;
|
|
3451
2722
|
readonly defaultValue?: unknown;
|
|
3452
2723
|
readonly group?: string | undefined;
|
|
@@ -3454,23 +2725,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3454
2725
|
readonly system?: boolean | undefined;
|
|
3455
2726
|
readonly min?: number | undefined;
|
|
3456
2727
|
readonly max?: number | undefined;
|
|
3457
|
-
readonly encryptionConfig?: {
|
|
3458
|
-
enabled: boolean;
|
|
3459
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3460
|
-
keyManagement: {
|
|
3461
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3462
|
-
keyId?: string | undefined;
|
|
3463
|
-
rotationPolicy?: {
|
|
3464
|
-
enabled: boolean;
|
|
3465
|
-
frequencyDays: number;
|
|
3466
|
-
retainOldVersions: number;
|
|
3467
|
-
autoRotate: boolean;
|
|
3468
|
-
} | undefined;
|
|
3469
|
-
};
|
|
3470
|
-
scope: "record" | "field" | "table" | "database";
|
|
3471
|
-
deterministicEncryption: boolean;
|
|
3472
|
-
searchableEncryption: boolean;
|
|
3473
|
-
} | undefined;
|
|
3474
2728
|
readonly columnName?: string | undefined;
|
|
3475
2729
|
readonly searchable?: boolean | undefined;
|
|
3476
2730
|
readonly unique?: boolean | undefined;
|
|
@@ -3479,7 +2733,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3479
2733
|
readonly scale?: number | undefined;
|
|
3480
2734
|
readonly reference?: string | undefined;
|
|
3481
2735
|
readonly referenceFilters?: string[] | undefined;
|
|
3482
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3483
2736
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3484
2737
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3485
2738
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3504,22 +2757,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3504
2757
|
relationshipField?: string | undefined;
|
|
3505
2758
|
} | undefined;
|
|
3506
2759
|
readonly language?: string | undefined;
|
|
3507
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3508
2760
|
readonly maxRating?: number | undefined;
|
|
3509
|
-
readonly allowHalf?: boolean | undefined;
|
|
3510
|
-
readonly displayMap?: boolean | undefined;
|
|
3511
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
3512
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3513
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3514
|
-
readonly allowAlpha?: boolean | undefined;
|
|
3515
|
-
readonly presetColors?: string[] | undefined;
|
|
3516
2761
|
readonly step?: number | undefined;
|
|
3517
|
-
readonly showValue?: boolean | undefined;
|
|
3518
|
-
readonly marks?: Record<string, string> | undefined;
|
|
3519
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3520
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3521
|
-
readonly displayValue?: boolean | undefined;
|
|
3522
|
-
readonly allowScanning?: boolean | undefined;
|
|
3523
2762
|
readonly currencyConfig?: {
|
|
3524
2763
|
precision: number;
|
|
3525
2764
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3573,29 +2812,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3573
2812
|
} | undefined;
|
|
3574
2813
|
maxVersions?: number | undefined;
|
|
3575
2814
|
} | undefined;
|
|
3576
|
-
readonly
|
|
3577
|
-
field: string;
|
|
3578
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3579
|
-
preserveFormat: boolean;
|
|
3580
|
-
preserveLength: boolean;
|
|
3581
|
-
pattern?: string | undefined;
|
|
3582
|
-
roles?: string[] | undefined;
|
|
3583
|
-
exemptRoles?: string[] | undefined;
|
|
3584
|
-
} | undefined;
|
|
3585
|
-
readonly auditTrail?: boolean | undefined;
|
|
3586
|
-
readonly cached?: {
|
|
3587
|
-
enabled: boolean;
|
|
3588
|
-
ttl: number;
|
|
3589
|
-
invalidateOn: string[];
|
|
3590
|
-
} | undefined;
|
|
3591
|
-
readonly dataQuality?: {
|
|
3592
|
-
uniqueness: boolean;
|
|
3593
|
-
completeness: number;
|
|
3594
|
-
accuracy?: {
|
|
3595
|
-
source: string;
|
|
3596
|
-
threshold: number;
|
|
3597
|
-
} | undefined;
|
|
3598
|
-
} | undefined;
|
|
2815
|
+
readonly trackHistory?: boolean | undefined;
|
|
3599
2816
|
readonly visibleWhen?: {
|
|
3600
2817
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3601
2818
|
source?: string | undefined;
|
|
@@ -3634,7 +2851,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3634
2851
|
} | undefined;
|
|
3635
2852
|
readonly sortable?: boolean | undefined;
|
|
3636
2853
|
readonly inlineHelpText?: string | undefined;
|
|
3637
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3638
2854
|
readonly caseSensitive?: boolean | undefined;
|
|
3639
2855
|
readonly autonumberFormat?: string | undefined;
|
|
3640
2856
|
readonly index?: boolean | undefined;
|
|
@@ -3656,7 +2872,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3656
2872
|
readonly required?: boolean | undefined;
|
|
3657
2873
|
readonly multiple?: boolean | undefined;
|
|
3658
2874
|
readonly dependencies?: string[] | undefined;
|
|
3659
|
-
readonly theme?: string | undefined;
|
|
3660
2875
|
readonly externalId?: boolean | undefined;
|
|
3661
2876
|
readonly defaultValue?: unknown;
|
|
3662
2877
|
readonly group?: string | undefined;
|
|
@@ -3664,23 +2879,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3664
2879
|
readonly system?: boolean | undefined;
|
|
3665
2880
|
readonly min?: number | undefined;
|
|
3666
2881
|
readonly max?: number | undefined;
|
|
3667
|
-
readonly encryptionConfig?: {
|
|
3668
|
-
enabled: boolean;
|
|
3669
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3670
|
-
keyManagement: {
|
|
3671
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3672
|
-
keyId?: string | undefined;
|
|
3673
|
-
rotationPolicy?: {
|
|
3674
|
-
enabled: boolean;
|
|
3675
|
-
frequencyDays: number;
|
|
3676
|
-
retainOldVersions: number;
|
|
3677
|
-
autoRotate: boolean;
|
|
3678
|
-
} | undefined;
|
|
3679
|
-
};
|
|
3680
|
-
scope: "record" | "field" | "table" | "database";
|
|
3681
|
-
deterministicEncryption: boolean;
|
|
3682
|
-
searchableEncryption: boolean;
|
|
3683
|
-
} | undefined;
|
|
3684
2882
|
readonly columnName?: string | undefined;
|
|
3685
2883
|
readonly searchable?: boolean | undefined;
|
|
3686
2884
|
readonly unique?: boolean | undefined;
|
|
@@ -3689,7 +2887,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3689
2887
|
readonly scale?: number | undefined;
|
|
3690
2888
|
readonly reference?: string | undefined;
|
|
3691
2889
|
readonly referenceFilters?: string[] | undefined;
|
|
3692
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3693
2890
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3694
2891
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3695
2892
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3714,22 +2911,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3714
2911
|
relationshipField?: string | undefined;
|
|
3715
2912
|
} | undefined;
|
|
3716
2913
|
readonly language?: string | undefined;
|
|
3717
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3718
2914
|
readonly maxRating?: number | undefined;
|
|
3719
|
-
readonly allowHalf?: boolean | undefined;
|
|
3720
|
-
readonly displayMap?: boolean | undefined;
|
|
3721
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
3722
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3723
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3724
|
-
readonly allowAlpha?: boolean | undefined;
|
|
3725
|
-
readonly presetColors?: string[] | undefined;
|
|
3726
2915
|
readonly step?: number | undefined;
|
|
3727
|
-
readonly showValue?: boolean | undefined;
|
|
3728
|
-
readonly marks?: Record<string, string> | undefined;
|
|
3729
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3730
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3731
|
-
readonly displayValue?: boolean | undefined;
|
|
3732
|
-
readonly allowScanning?: boolean | undefined;
|
|
3733
2916
|
readonly currencyConfig?: {
|
|
3734
2917
|
precision: number;
|
|
3735
2918
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3783,29 +2966,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3783
2966
|
} | undefined;
|
|
3784
2967
|
maxVersions?: number | undefined;
|
|
3785
2968
|
} | undefined;
|
|
3786
|
-
readonly
|
|
3787
|
-
field: string;
|
|
3788
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3789
|
-
preserveFormat: boolean;
|
|
3790
|
-
preserveLength: boolean;
|
|
3791
|
-
pattern?: string | undefined;
|
|
3792
|
-
roles?: string[] | undefined;
|
|
3793
|
-
exemptRoles?: string[] | undefined;
|
|
3794
|
-
} | undefined;
|
|
3795
|
-
readonly auditTrail?: boolean | undefined;
|
|
3796
|
-
readonly cached?: {
|
|
3797
|
-
enabled: boolean;
|
|
3798
|
-
ttl: number;
|
|
3799
|
-
invalidateOn: string[];
|
|
3800
|
-
} | undefined;
|
|
3801
|
-
readonly dataQuality?: {
|
|
3802
|
-
uniqueness: boolean;
|
|
3803
|
-
completeness: number;
|
|
3804
|
-
accuracy?: {
|
|
3805
|
-
source: string;
|
|
3806
|
-
threshold: number;
|
|
3807
|
-
} | undefined;
|
|
3808
|
-
} | undefined;
|
|
2969
|
+
readonly trackHistory?: boolean | undefined;
|
|
3809
2970
|
readonly visibleWhen?: {
|
|
3810
2971
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3811
2972
|
source?: string | undefined;
|
|
@@ -3844,7 +3005,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3844
3005
|
} | undefined;
|
|
3845
3006
|
readonly sortable?: boolean | undefined;
|
|
3846
3007
|
readonly inlineHelpText?: string | undefined;
|
|
3847
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3848
3008
|
readonly caseSensitive?: boolean | undefined;
|
|
3849
3009
|
readonly autonumberFormat?: string | undefined;
|
|
3850
3010
|
readonly index?: boolean | undefined;
|
|
@@ -3866,7 +3026,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3866
3026
|
readonly required?: boolean | undefined;
|
|
3867
3027
|
readonly multiple?: boolean | undefined;
|
|
3868
3028
|
readonly dependencies?: string[] | undefined;
|
|
3869
|
-
readonly theme?: string | undefined;
|
|
3870
3029
|
readonly externalId?: boolean | undefined;
|
|
3871
3030
|
readonly defaultValue?: unknown;
|
|
3872
3031
|
readonly group?: string | undefined;
|
|
@@ -3874,23 +3033,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3874
3033
|
readonly system?: boolean | undefined;
|
|
3875
3034
|
readonly min?: number | undefined;
|
|
3876
3035
|
readonly max?: number | undefined;
|
|
3877
|
-
readonly encryptionConfig?: {
|
|
3878
|
-
enabled: boolean;
|
|
3879
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3880
|
-
keyManagement: {
|
|
3881
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3882
|
-
keyId?: string | undefined;
|
|
3883
|
-
rotationPolicy?: {
|
|
3884
|
-
enabled: boolean;
|
|
3885
|
-
frequencyDays: number;
|
|
3886
|
-
retainOldVersions: number;
|
|
3887
|
-
autoRotate: boolean;
|
|
3888
|
-
} | undefined;
|
|
3889
|
-
};
|
|
3890
|
-
scope: "record" | "field" | "table" | "database";
|
|
3891
|
-
deterministicEncryption: boolean;
|
|
3892
|
-
searchableEncryption: boolean;
|
|
3893
|
-
} | undefined;
|
|
3894
3036
|
readonly columnName?: string | undefined;
|
|
3895
3037
|
readonly searchable?: boolean | undefined;
|
|
3896
3038
|
readonly unique?: boolean | undefined;
|
|
@@ -3899,7 +3041,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3899
3041
|
readonly scale?: number | undefined;
|
|
3900
3042
|
readonly reference?: string | undefined;
|
|
3901
3043
|
readonly referenceFilters?: string[] | undefined;
|
|
3902
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3903
3044
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3904
3045
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3905
3046
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3924,22 +3065,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3924
3065
|
relationshipField?: string | undefined;
|
|
3925
3066
|
} | undefined;
|
|
3926
3067
|
readonly language?: string | undefined;
|
|
3927
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3928
3068
|
readonly maxRating?: number | undefined;
|
|
3929
|
-
readonly allowHalf?: boolean | undefined;
|
|
3930
|
-
readonly displayMap?: boolean | undefined;
|
|
3931
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
3932
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3933
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3934
|
-
readonly allowAlpha?: boolean | undefined;
|
|
3935
|
-
readonly presetColors?: string[] | undefined;
|
|
3936
3069
|
readonly step?: number | undefined;
|
|
3937
|
-
readonly showValue?: boolean | undefined;
|
|
3938
|
-
readonly marks?: Record<string, string> | undefined;
|
|
3939
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3940
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3941
|
-
readonly displayValue?: boolean | undefined;
|
|
3942
|
-
readonly allowScanning?: boolean | undefined;
|
|
3943
3070
|
readonly currencyConfig?: {
|
|
3944
3071
|
precision: number;
|
|
3945
3072
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3993,29 +3120,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3993
3120
|
} | undefined;
|
|
3994
3121
|
maxVersions?: number | undefined;
|
|
3995
3122
|
} | undefined;
|
|
3996
|
-
readonly
|
|
3997
|
-
field: string;
|
|
3998
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3999
|
-
preserveFormat: boolean;
|
|
4000
|
-
preserveLength: boolean;
|
|
4001
|
-
pattern?: string | undefined;
|
|
4002
|
-
roles?: string[] | undefined;
|
|
4003
|
-
exemptRoles?: string[] | undefined;
|
|
4004
|
-
} | undefined;
|
|
4005
|
-
readonly auditTrail?: boolean | undefined;
|
|
4006
|
-
readonly cached?: {
|
|
4007
|
-
enabled: boolean;
|
|
4008
|
-
ttl: number;
|
|
4009
|
-
invalidateOn: string[];
|
|
4010
|
-
} | undefined;
|
|
4011
|
-
readonly dataQuality?: {
|
|
4012
|
-
uniqueness: boolean;
|
|
4013
|
-
completeness: number;
|
|
4014
|
-
accuracy?: {
|
|
4015
|
-
source: string;
|
|
4016
|
-
threshold: number;
|
|
4017
|
-
} | undefined;
|
|
4018
|
-
} | undefined;
|
|
3123
|
+
readonly trackHistory?: boolean | undefined;
|
|
4019
3124
|
readonly visibleWhen?: {
|
|
4020
3125
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4021
3126
|
source?: string | undefined;
|
|
@@ -4054,7 +3159,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4054
3159
|
} | undefined;
|
|
4055
3160
|
readonly sortable?: boolean | undefined;
|
|
4056
3161
|
readonly inlineHelpText?: string | undefined;
|
|
4057
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4058
3162
|
readonly caseSensitive?: boolean | undefined;
|
|
4059
3163
|
readonly autonumberFormat?: string | undefined;
|
|
4060
3164
|
readonly index?: boolean | undefined;
|
|
@@ -4076,7 +3180,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4076
3180
|
readonly required?: boolean | undefined;
|
|
4077
3181
|
readonly multiple?: boolean | undefined;
|
|
4078
3182
|
readonly dependencies?: string[] | undefined;
|
|
4079
|
-
readonly theme?: string | undefined;
|
|
4080
3183
|
readonly externalId?: boolean | undefined;
|
|
4081
3184
|
readonly defaultValue?: unknown;
|
|
4082
3185
|
readonly group?: string | undefined;
|
|
@@ -4084,23 +3187,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4084
3187
|
readonly system?: boolean | undefined;
|
|
4085
3188
|
readonly min?: number | undefined;
|
|
4086
3189
|
readonly max?: number | undefined;
|
|
4087
|
-
readonly encryptionConfig?: {
|
|
4088
|
-
enabled: boolean;
|
|
4089
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
4090
|
-
keyManagement: {
|
|
4091
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
4092
|
-
keyId?: string | undefined;
|
|
4093
|
-
rotationPolicy?: {
|
|
4094
|
-
enabled: boolean;
|
|
4095
|
-
frequencyDays: number;
|
|
4096
|
-
retainOldVersions: number;
|
|
4097
|
-
autoRotate: boolean;
|
|
4098
|
-
} | undefined;
|
|
4099
|
-
};
|
|
4100
|
-
scope: "record" | "field" | "table" | "database";
|
|
4101
|
-
deterministicEncryption: boolean;
|
|
4102
|
-
searchableEncryption: boolean;
|
|
4103
|
-
} | undefined;
|
|
4104
3190
|
readonly columnName?: string | undefined;
|
|
4105
3191
|
readonly searchable?: boolean | undefined;
|
|
4106
3192
|
readonly unique?: boolean | undefined;
|
|
@@ -4109,7 +3195,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4109
3195
|
readonly scale?: number | undefined;
|
|
4110
3196
|
readonly reference?: string | undefined;
|
|
4111
3197
|
readonly referenceFilters?: string[] | undefined;
|
|
4112
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4113
3198
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4114
3199
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4115
3200
|
readonly inlineTitle?: string | undefined;
|
|
@@ -4134,22 +3219,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4134
3219
|
relationshipField?: string | undefined;
|
|
4135
3220
|
} | undefined;
|
|
4136
3221
|
readonly language?: string | undefined;
|
|
4137
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4138
3222
|
readonly maxRating?: number | undefined;
|
|
4139
|
-
readonly allowHalf?: boolean | undefined;
|
|
4140
|
-
readonly displayMap?: boolean | undefined;
|
|
4141
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
4142
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
4143
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
4144
|
-
readonly allowAlpha?: boolean | undefined;
|
|
4145
|
-
readonly presetColors?: string[] | undefined;
|
|
4146
3223
|
readonly step?: number | undefined;
|
|
4147
|
-
readonly showValue?: boolean | undefined;
|
|
4148
|
-
readonly marks?: Record<string, string> | undefined;
|
|
4149
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
4150
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
4151
|
-
readonly displayValue?: boolean | undefined;
|
|
4152
|
-
readonly allowScanning?: boolean | undefined;
|
|
4153
3224
|
readonly currencyConfig?: {
|
|
4154
3225
|
precision: number;
|
|
4155
3226
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -4203,29 +3274,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4203
3274
|
} | undefined;
|
|
4204
3275
|
maxVersions?: number | undefined;
|
|
4205
3276
|
} | undefined;
|
|
4206
|
-
readonly
|
|
4207
|
-
field: string;
|
|
4208
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
4209
|
-
preserveFormat: boolean;
|
|
4210
|
-
preserveLength: boolean;
|
|
4211
|
-
pattern?: string | undefined;
|
|
4212
|
-
roles?: string[] | undefined;
|
|
4213
|
-
exemptRoles?: string[] | undefined;
|
|
4214
|
-
} | undefined;
|
|
4215
|
-
readonly auditTrail?: boolean | undefined;
|
|
4216
|
-
readonly cached?: {
|
|
4217
|
-
enabled: boolean;
|
|
4218
|
-
ttl: number;
|
|
4219
|
-
invalidateOn: string[];
|
|
4220
|
-
} | undefined;
|
|
4221
|
-
readonly dataQuality?: {
|
|
4222
|
-
uniqueness: boolean;
|
|
4223
|
-
completeness: number;
|
|
4224
|
-
accuracy?: {
|
|
4225
|
-
source: string;
|
|
4226
|
-
threshold: number;
|
|
4227
|
-
} | undefined;
|
|
4228
|
-
} | undefined;
|
|
3277
|
+
readonly trackHistory?: boolean | undefined;
|
|
4229
3278
|
readonly visibleWhen?: {
|
|
4230
3279
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4231
3280
|
source?: string | undefined;
|
|
@@ -4264,7 +3313,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4264
3313
|
} | undefined;
|
|
4265
3314
|
readonly sortable?: boolean | undefined;
|
|
4266
3315
|
readonly inlineHelpText?: string | undefined;
|
|
4267
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4268
3316
|
readonly caseSensitive?: boolean | undefined;
|
|
4269
3317
|
readonly autonumberFormat?: string | undefined;
|
|
4270
3318
|
readonly index?: boolean | undefined;
|
|
@@ -4286,7 +3334,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4286
3334
|
readonly required?: boolean | undefined;
|
|
4287
3335
|
readonly multiple?: boolean | undefined;
|
|
4288
3336
|
readonly dependencies?: string[] | undefined;
|
|
4289
|
-
readonly theme?: string | undefined;
|
|
4290
3337
|
readonly externalId?: boolean | undefined;
|
|
4291
3338
|
readonly defaultValue?: unknown;
|
|
4292
3339
|
readonly group?: string | undefined;
|
|
@@ -4294,23 +3341,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4294
3341
|
readonly system?: boolean | undefined;
|
|
4295
3342
|
readonly min?: number | undefined;
|
|
4296
3343
|
readonly max?: number | undefined;
|
|
4297
|
-
readonly encryptionConfig?: {
|
|
4298
|
-
enabled: boolean;
|
|
4299
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
4300
|
-
keyManagement: {
|
|
4301
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
4302
|
-
keyId?: string | undefined;
|
|
4303
|
-
rotationPolicy?: {
|
|
4304
|
-
enabled: boolean;
|
|
4305
|
-
frequencyDays: number;
|
|
4306
|
-
retainOldVersions: number;
|
|
4307
|
-
autoRotate: boolean;
|
|
4308
|
-
} | undefined;
|
|
4309
|
-
};
|
|
4310
|
-
scope: "record" | "field" | "table" | "database";
|
|
4311
|
-
deterministicEncryption: boolean;
|
|
4312
|
-
searchableEncryption: boolean;
|
|
4313
|
-
} | undefined;
|
|
4314
3344
|
readonly columnName?: string | undefined;
|
|
4315
3345
|
readonly searchable?: boolean | undefined;
|
|
4316
3346
|
readonly unique?: boolean | undefined;
|
|
@@ -4319,7 +3349,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4319
3349
|
readonly scale?: number | undefined;
|
|
4320
3350
|
readonly reference?: string | undefined;
|
|
4321
3351
|
readonly referenceFilters?: string[] | undefined;
|
|
4322
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4323
3352
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4324
3353
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4325
3354
|
readonly inlineTitle?: string | undefined;
|
|
@@ -4344,22 +3373,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4344
3373
|
relationshipField?: string | undefined;
|
|
4345
3374
|
} | undefined;
|
|
4346
3375
|
readonly language?: string | undefined;
|
|
4347
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4348
3376
|
readonly maxRating?: number | undefined;
|
|
4349
|
-
readonly allowHalf?: boolean | undefined;
|
|
4350
|
-
readonly displayMap?: boolean | undefined;
|
|
4351
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
4352
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
4353
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
4354
|
-
readonly allowAlpha?: boolean | undefined;
|
|
4355
|
-
readonly presetColors?: string[] | undefined;
|
|
4356
3377
|
readonly step?: number | undefined;
|
|
4357
|
-
readonly showValue?: boolean | undefined;
|
|
4358
|
-
readonly marks?: Record<string, string> | undefined;
|
|
4359
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
4360
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
4361
|
-
readonly displayValue?: boolean | undefined;
|
|
4362
|
-
readonly allowScanning?: boolean | undefined;
|
|
4363
3378
|
readonly currencyConfig?: {
|
|
4364
3379
|
precision: number;
|
|
4365
3380
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -4413,29 +3428,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4413
3428
|
} | undefined;
|
|
4414
3429
|
maxVersions?: number | undefined;
|
|
4415
3430
|
} | undefined;
|
|
4416
|
-
readonly
|
|
4417
|
-
field: string;
|
|
4418
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
4419
|
-
preserveFormat: boolean;
|
|
4420
|
-
preserveLength: boolean;
|
|
4421
|
-
pattern?: string | undefined;
|
|
4422
|
-
roles?: string[] | undefined;
|
|
4423
|
-
exemptRoles?: string[] | undefined;
|
|
4424
|
-
} | undefined;
|
|
4425
|
-
readonly auditTrail?: boolean | undefined;
|
|
4426
|
-
readonly cached?: {
|
|
4427
|
-
enabled: boolean;
|
|
4428
|
-
ttl: number;
|
|
4429
|
-
invalidateOn: string[];
|
|
4430
|
-
} | undefined;
|
|
4431
|
-
readonly dataQuality?: {
|
|
4432
|
-
uniqueness: boolean;
|
|
4433
|
-
completeness: number;
|
|
4434
|
-
accuracy?: {
|
|
4435
|
-
source: string;
|
|
4436
|
-
threshold: number;
|
|
4437
|
-
} | undefined;
|
|
4438
|
-
} | undefined;
|
|
3431
|
+
readonly trackHistory?: boolean | undefined;
|
|
4439
3432
|
readonly visibleWhen?: {
|
|
4440
3433
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4441
3434
|
source?: string | undefined;
|
|
@@ -4474,7 +3467,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4474
3467
|
} | undefined;
|
|
4475
3468
|
readonly sortable?: boolean | undefined;
|
|
4476
3469
|
readonly inlineHelpText?: string | undefined;
|
|
4477
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4478
3470
|
readonly caseSensitive?: boolean | undefined;
|
|
4479
3471
|
readonly autonumberFormat?: string | undefined;
|
|
4480
3472
|
readonly index?: boolean | undefined;
|
|
@@ -4496,7 +3488,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4496
3488
|
readonly required?: boolean | undefined;
|
|
4497
3489
|
readonly multiple?: boolean | undefined;
|
|
4498
3490
|
readonly dependencies?: string[] | undefined;
|
|
4499
|
-
readonly theme?: string | undefined;
|
|
4500
3491
|
readonly externalId?: boolean | undefined;
|
|
4501
3492
|
readonly defaultValue?: unknown;
|
|
4502
3493
|
readonly group?: string | undefined;
|
|
@@ -4504,23 +3495,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4504
3495
|
readonly system?: boolean | undefined;
|
|
4505
3496
|
readonly min?: number | undefined;
|
|
4506
3497
|
readonly max?: number | undefined;
|
|
4507
|
-
readonly encryptionConfig?: {
|
|
4508
|
-
enabled: boolean;
|
|
4509
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
4510
|
-
keyManagement: {
|
|
4511
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
4512
|
-
keyId?: string | undefined;
|
|
4513
|
-
rotationPolicy?: {
|
|
4514
|
-
enabled: boolean;
|
|
4515
|
-
frequencyDays: number;
|
|
4516
|
-
retainOldVersions: number;
|
|
4517
|
-
autoRotate: boolean;
|
|
4518
|
-
} | undefined;
|
|
4519
|
-
};
|
|
4520
|
-
scope: "record" | "field" | "table" | "database";
|
|
4521
|
-
deterministicEncryption: boolean;
|
|
4522
|
-
searchableEncryption: boolean;
|
|
4523
|
-
} | undefined;
|
|
4524
3498
|
readonly columnName?: string | undefined;
|
|
4525
3499
|
readonly searchable?: boolean | undefined;
|
|
4526
3500
|
readonly unique?: boolean | undefined;
|
|
@@ -4529,7 +3503,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4529
3503
|
readonly scale?: number | undefined;
|
|
4530
3504
|
readonly reference?: string | undefined;
|
|
4531
3505
|
readonly referenceFilters?: string[] | undefined;
|
|
4532
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4533
3506
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4534
3507
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4535
3508
|
readonly inlineTitle?: string | undefined;
|
|
@@ -4554,22 +3527,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4554
3527
|
relationshipField?: string | undefined;
|
|
4555
3528
|
} | undefined;
|
|
4556
3529
|
readonly language?: string | undefined;
|
|
4557
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4558
3530
|
readonly maxRating?: number | undefined;
|
|
4559
|
-
readonly allowHalf?: boolean | undefined;
|
|
4560
|
-
readonly displayMap?: boolean | undefined;
|
|
4561
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
4562
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
4563
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
4564
|
-
readonly allowAlpha?: boolean | undefined;
|
|
4565
|
-
readonly presetColors?: string[] | undefined;
|
|
4566
3531
|
readonly step?: number | undefined;
|
|
4567
|
-
readonly showValue?: boolean | undefined;
|
|
4568
|
-
readonly marks?: Record<string, string> | undefined;
|
|
4569
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
4570
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
4571
|
-
readonly displayValue?: boolean | undefined;
|
|
4572
|
-
readonly allowScanning?: boolean | undefined;
|
|
4573
3532
|
readonly currencyConfig?: {
|
|
4574
3533
|
precision: number;
|
|
4575
3534
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -4623,29 +3582,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4623
3582
|
} | undefined;
|
|
4624
3583
|
maxVersions?: number | undefined;
|
|
4625
3584
|
} | undefined;
|
|
4626
|
-
readonly
|
|
4627
|
-
field: string;
|
|
4628
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
4629
|
-
preserveFormat: boolean;
|
|
4630
|
-
preserveLength: boolean;
|
|
4631
|
-
pattern?: string | undefined;
|
|
4632
|
-
roles?: string[] | undefined;
|
|
4633
|
-
exemptRoles?: string[] | undefined;
|
|
4634
|
-
} | undefined;
|
|
4635
|
-
readonly auditTrail?: boolean | undefined;
|
|
4636
|
-
readonly cached?: {
|
|
4637
|
-
enabled: boolean;
|
|
4638
|
-
ttl: number;
|
|
4639
|
-
invalidateOn: string[];
|
|
4640
|
-
} | undefined;
|
|
4641
|
-
readonly dataQuality?: {
|
|
4642
|
-
uniqueness: boolean;
|
|
4643
|
-
completeness: number;
|
|
4644
|
-
accuracy?: {
|
|
4645
|
-
source: string;
|
|
4646
|
-
threshold: number;
|
|
4647
|
-
} | undefined;
|
|
4648
|
-
} | undefined;
|
|
3585
|
+
readonly trackHistory?: boolean | undefined;
|
|
4649
3586
|
readonly visibleWhen?: {
|
|
4650
3587
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4651
3588
|
source?: string | undefined;
|
|
@@ -4684,7 +3621,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4684
3621
|
} | undefined;
|
|
4685
3622
|
readonly sortable?: boolean | undefined;
|
|
4686
3623
|
readonly inlineHelpText?: string | undefined;
|
|
4687
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4688
3624
|
readonly caseSensitive?: boolean | undefined;
|
|
4689
3625
|
readonly autonumberFormat?: string | undefined;
|
|
4690
3626
|
readonly index?: boolean | undefined;
|
|
@@ -4726,7 +3662,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4726
3662
|
multiple: boolean;
|
|
4727
3663
|
unique: boolean;
|
|
4728
3664
|
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
4729
|
-
auditTrail: boolean;
|
|
4730
3665
|
hidden: boolean;
|
|
4731
3666
|
readonly: boolean;
|
|
4732
3667
|
sortable: boolean;
|
|
@@ -4752,7 +3687,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4752
3687
|
}[] | undefined;
|
|
4753
3688
|
reference?: string | undefined;
|
|
4754
3689
|
referenceFilters?: string[] | undefined;
|
|
4755
|
-
writeRequiresMasterRead?: boolean | undefined;
|
|
4756
3690
|
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4757
3691
|
inlineTitle?: string | undefined;
|
|
4758
3692
|
inlineColumns?: any[] | undefined;
|
|
@@ -4784,23 +3718,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
4784
3718
|
relationshipField?: string | undefined;
|
|
4785
3719
|
} | undefined;
|
|
4786
3720
|
language?: string | undefined;
|
|
4787
|
-
theme?: string | undefined;
|
|
4788
|
-
lineNumbers?: boolean | undefined;
|
|
4789
3721
|
maxRating?: number | undefined;
|
|
4790
|
-
allowHalf?: boolean | undefined;
|
|
4791
|
-
displayMap?: boolean | undefined;
|
|
4792
|
-
allowGeocoding?: boolean | undefined;
|
|
4793
|
-
addressFormat?: "us" | "uk" | "international" | undefined;
|
|
4794
|
-
colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
4795
|
-
allowAlpha?: boolean | undefined;
|
|
4796
|
-
presetColors?: string[] | undefined;
|
|
4797
3722
|
step?: number | undefined;
|
|
4798
|
-
showValue?: boolean | undefined;
|
|
4799
|
-
marks?: Record<string, string> | undefined;
|
|
4800
|
-
barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
4801
|
-
qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
4802
|
-
displayValue?: boolean | undefined;
|
|
4803
|
-
allowScanning?: boolean | undefined;
|
|
4804
3723
|
currencyConfig?: {
|
|
4805
3724
|
precision: number;
|
|
4806
3725
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -4854,46 +3773,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
4854
3773
|
} | undefined;
|
|
4855
3774
|
maxVersions?: number | undefined;
|
|
4856
3775
|
} | undefined;
|
|
4857
|
-
|
|
4858
|
-
enabled: boolean;
|
|
4859
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
4860
|
-
keyManagement: {
|
|
4861
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
4862
|
-
keyId?: string | undefined;
|
|
4863
|
-
rotationPolicy?: {
|
|
4864
|
-
enabled: boolean;
|
|
4865
|
-
frequencyDays: number;
|
|
4866
|
-
retainOldVersions: number;
|
|
4867
|
-
autoRotate: boolean;
|
|
4868
|
-
} | undefined;
|
|
4869
|
-
};
|
|
4870
|
-
scope: "record" | "field" | "table" | "database";
|
|
4871
|
-
deterministicEncryption: boolean;
|
|
4872
|
-
searchableEncryption: boolean;
|
|
4873
|
-
} | undefined;
|
|
4874
|
-
maskingRule?: {
|
|
4875
|
-
field: string;
|
|
4876
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
4877
|
-
preserveFormat: boolean;
|
|
4878
|
-
preserveLength: boolean;
|
|
4879
|
-
pattern?: string | undefined;
|
|
4880
|
-
roles?: string[] | undefined;
|
|
4881
|
-
exemptRoles?: string[] | undefined;
|
|
4882
|
-
} | undefined;
|
|
3776
|
+
trackHistory?: boolean | undefined;
|
|
4883
3777
|
dependencies?: string[] | undefined;
|
|
4884
|
-
cached?: {
|
|
4885
|
-
enabled: boolean;
|
|
4886
|
-
ttl: number;
|
|
4887
|
-
invalidateOn: string[];
|
|
4888
|
-
} | undefined;
|
|
4889
|
-
dataQuality?: {
|
|
4890
|
-
uniqueness: boolean;
|
|
4891
|
-
completeness: number;
|
|
4892
|
-
accuracy?: {
|
|
4893
|
-
source: string;
|
|
4894
|
-
threshold: number;
|
|
4895
|
-
} | undefined;
|
|
4896
|
-
} | undefined;
|
|
4897
3778
|
group?: string | undefined;
|
|
4898
3779
|
visibleWhen?: {
|
|
4899
3780
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -4965,7 +3846,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4965
3846
|
} | undefined;
|
|
4966
3847
|
system?: boolean | undefined;
|
|
4967
3848
|
inlineHelpText?: string | undefined;
|
|
4968
|
-
trackFeedHistory?: boolean | undefined;
|
|
4969
3849
|
caseSensitive?: boolean | undefined;
|
|
4970
3850
|
autonumberFormat?: string | undefined;
|
|
4971
3851
|
}>;
|
|
@@ -5056,12 +3936,13 @@ declare const SysApprovalAction: Omit<{
|
|
|
5056
3936
|
key: string;
|
|
5057
3937
|
interval?: string | undefined;
|
|
5058
3938
|
} | undefined;
|
|
5059
|
-
cdc?: {
|
|
5060
|
-
enabled: boolean;
|
|
5061
|
-
events: ("delete" | "update" | "insert")[];
|
|
5062
|
-
destination: string;
|
|
5063
|
-
} | undefined;
|
|
5064
3939
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
3940
|
+
activityMilestones?: {
|
|
3941
|
+
field: string;
|
|
3942
|
+
value: string;
|
|
3943
|
+
summary: string;
|
|
3944
|
+
type?: string | undefined;
|
|
3945
|
+
}[] | undefined;
|
|
5065
3946
|
displayNameField?: string | undefined;
|
|
5066
3947
|
recordName?: {
|
|
5067
3948
|
type: "text" | "autonumber";
|
|
@@ -5372,7 +4253,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5372
4253
|
clone: boolean;
|
|
5373
4254
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
5374
4255
|
} | undefined;
|
|
5375
|
-
recordTypes?: string[] | undefined;
|
|
5376
4256
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
5377
4257
|
publicSharing?: {
|
|
5378
4258
|
enabled: boolean;
|
|
@@ -5589,7 +4469,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5589
4469
|
readonly required?: boolean | undefined;
|
|
5590
4470
|
readonly multiple?: boolean | undefined;
|
|
5591
4471
|
readonly dependencies?: string[] | undefined;
|
|
5592
|
-
readonly theme?: string | undefined;
|
|
5593
4472
|
readonly externalId?: boolean | undefined;
|
|
5594
4473
|
readonly defaultValue?: unknown;
|
|
5595
4474
|
readonly group?: string | undefined;
|
|
@@ -5597,23 +4476,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5597
4476
|
readonly system?: boolean | undefined;
|
|
5598
4477
|
readonly min?: number | undefined;
|
|
5599
4478
|
readonly max?: number | undefined;
|
|
5600
|
-
readonly encryptionConfig?: {
|
|
5601
|
-
enabled: boolean;
|
|
5602
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5603
|
-
keyManagement: {
|
|
5604
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5605
|
-
keyId?: string | undefined;
|
|
5606
|
-
rotationPolicy?: {
|
|
5607
|
-
enabled: boolean;
|
|
5608
|
-
frequencyDays: number;
|
|
5609
|
-
retainOldVersions: number;
|
|
5610
|
-
autoRotate: boolean;
|
|
5611
|
-
} | undefined;
|
|
5612
|
-
};
|
|
5613
|
-
scope: "record" | "field" | "table" | "database";
|
|
5614
|
-
deterministicEncryption: boolean;
|
|
5615
|
-
searchableEncryption: boolean;
|
|
5616
|
-
} | undefined;
|
|
5617
4479
|
readonly columnName?: string | undefined;
|
|
5618
4480
|
readonly searchable?: boolean | undefined;
|
|
5619
4481
|
readonly unique?: boolean | undefined;
|
|
@@ -5622,7 +4484,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5622
4484
|
readonly scale?: number | undefined;
|
|
5623
4485
|
readonly reference?: string | undefined;
|
|
5624
4486
|
readonly referenceFilters?: string[] | undefined;
|
|
5625
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5626
4487
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5627
4488
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5628
4489
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5647,22 +4508,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
5647
4508
|
relationshipField?: string | undefined;
|
|
5648
4509
|
} | undefined;
|
|
5649
4510
|
readonly language?: string | undefined;
|
|
5650
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5651
4511
|
readonly maxRating?: number | undefined;
|
|
5652
|
-
readonly allowHalf?: boolean | undefined;
|
|
5653
|
-
readonly displayMap?: boolean | undefined;
|
|
5654
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5655
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5656
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5657
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5658
|
-
readonly presetColors?: string[] | undefined;
|
|
5659
4512
|
readonly step?: number | undefined;
|
|
5660
|
-
readonly showValue?: boolean | undefined;
|
|
5661
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5662
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5663
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5664
|
-
readonly displayValue?: boolean | undefined;
|
|
5665
|
-
readonly allowScanning?: boolean | undefined;
|
|
5666
4513
|
readonly currencyConfig?: {
|
|
5667
4514
|
precision: number;
|
|
5668
4515
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5716,29 +4563,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5716
4563
|
} | undefined;
|
|
5717
4564
|
maxVersions?: number | undefined;
|
|
5718
4565
|
} | undefined;
|
|
5719
|
-
readonly
|
|
5720
|
-
field: string;
|
|
5721
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5722
|
-
preserveFormat: boolean;
|
|
5723
|
-
preserveLength: boolean;
|
|
5724
|
-
pattern?: string | undefined;
|
|
5725
|
-
roles?: string[] | undefined;
|
|
5726
|
-
exemptRoles?: string[] | undefined;
|
|
5727
|
-
} | undefined;
|
|
5728
|
-
readonly auditTrail?: boolean | undefined;
|
|
5729
|
-
readonly cached?: {
|
|
5730
|
-
enabled: boolean;
|
|
5731
|
-
ttl: number;
|
|
5732
|
-
invalidateOn: string[];
|
|
5733
|
-
} | undefined;
|
|
5734
|
-
readonly dataQuality?: {
|
|
5735
|
-
uniqueness: boolean;
|
|
5736
|
-
completeness: number;
|
|
5737
|
-
accuracy?: {
|
|
5738
|
-
source: string;
|
|
5739
|
-
threshold: number;
|
|
5740
|
-
} | undefined;
|
|
5741
|
-
} | undefined;
|
|
4566
|
+
readonly trackHistory?: boolean | undefined;
|
|
5742
4567
|
readonly visibleWhen?: {
|
|
5743
4568
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5744
4569
|
source?: string | undefined;
|
|
@@ -5777,7 +4602,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5777
4602
|
} | undefined;
|
|
5778
4603
|
readonly sortable?: boolean | undefined;
|
|
5779
4604
|
readonly inlineHelpText?: string | undefined;
|
|
5780
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5781
4605
|
readonly caseSensitive?: boolean | undefined;
|
|
5782
4606
|
readonly autonumberFormat?: string | undefined;
|
|
5783
4607
|
readonly index?: boolean | undefined;
|
|
@@ -5799,7 +4623,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5799
4623
|
readonly required?: boolean | undefined;
|
|
5800
4624
|
readonly multiple?: boolean | undefined;
|
|
5801
4625
|
readonly dependencies?: string[] | undefined;
|
|
5802
|
-
readonly theme?: string | undefined;
|
|
5803
4626
|
readonly externalId?: boolean | undefined;
|
|
5804
4627
|
readonly defaultValue?: unknown;
|
|
5805
4628
|
readonly group?: string | undefined;
|
|
@@ -5807,23 +4630,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5807
4630
|
readonly system?: boolean | undefined;
|
|
5808
4631
|
readonly min?: number | undefined;
|
|
5809
4632
|
readonly max?: number | undefined;
|
|
5810
|
-
readonly encryptionConfig?: {
|
|
5811
|
-
enabled: boolean;
|
|
5812
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5813
|
-
keyManagement: {
|
|
5814
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5815
|
-
keyId?: string | undefined;
|
|
5816
|
-
rotationPolicy?: {
|
|
5817
|
-
enabled: boolean;
|
|
5818
|
-
frequencyDays: number;
|
|
5819
|
-
retainOldVersions: number;
|
|
5820
|
-
autoRotate: boolean;
|
|
5821
|
-
} | undefined;
|
|
5822
|
-
};
|
|
5823
|
-
scope: "record" | "field" | "table" | "database";
|
|
5824
|
-
deterministicEncryption: boolean;
|
|
5825
|
-
searchableEncryption: boolean;
|
|
5826
|
-
} | undefined;
|
|
5827
4633
|
readonly columnName?: string | undefined;
|
|
5828
4634
|
readonly searchable?: boolean | undefined;
|
|
5829
4635
|
readonly unique?: boolean | undefined;
|
|
@@ -5832,7 +4638,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5832
4638
|
readonly scale?: number | undefined;
|
|
5833
4639
|
reference: string;
|
|
5834
4640
|
readonly referenceFilters?: string[] | undefined;
|
|
5835
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5836
4641
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5837
4642
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5838
4643
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5857,22 +4662,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
5857
4662
|
relationshipField?: string | undefined;
|
|
5858
4663
|
} | undefined;
|
|
5859
4664
|
readonly language?: string | undefined;
|
|
5860
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5861
4665
|
readonly maxRating?: number | undefined;
|
|
5862
|
-
readonly allowHalf?: boolean | undefined;
|
|
5863
|
-
readonly displayMap?: boolean | undefined;
|
|
5864
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5865
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5866
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5867
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5868
|
-
readonly presetColors?: string[] | undefined;
|
|
5869
4666
|
readonly step?: number | undefined;
|
|
5870
|
-
readonly showValue?: boolean | undefined;
|
|
5871
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5872
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5873
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5874
|
-
readonly displayValue?: boolean | undefined;
|
|
5875
|
-
readonly allowScanning?: boolean | undefined;
|
|
5876
4667
|
readonly currencyConfig?: {
|
|
5877
4668
|
precision: number;
|
|
5878
4669
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5926,29 +4717,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5926
4717
|
} | undefined;
|
|
5927
4718
|
maxVersions?: number | undefined;
|
|
5928
4719
|
} | undefined;
|
|
5929
|
-
readonly
|
|
5930
|
-
field: string;
|
|
5931
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5932
|
-
preserveFormat: boolean;
|
|
5933
|
-
preserveLength: boolean;
|
|
5934
|
-
pattern?: string | undefined;
|
|
5935
|
-
roles?: string[] | undefined;
|
|
5936
|
-
exemptRoles?: string[] | undefined;
|
|
5937
|
-
} | undefined;
|
|
5938
|
-
readonly auditTrail?: boolean | undefined;
|
|
5939
|
-
readonly cached?: {
|
|
5940
|
-
enabled: boolean;
|
|
5941
|
-
ttl: number;
|
|
5942
|
-
invalidateOn: string[];
|
|
5943
|
-
} | undefined;
|
|
5944
|
-
readonly dataQuality?: {
|
|
5945
|
-
uniqueness: boolean;
|
|
5946
|
-
completeness: number;
|
|
5947
|
-
accuracy?: {
|
|
5948
|
-
source: string;
|
|
5949
|
-
threshold: number;
|
|
5950
|
-
} | undefined;
|
|
5951
|
-
} | undefined;
|
|
4720
|
+
readonly trackHistory?: boolean | undefined;
|
|
5952
4721
|
readonly visibleWhen?: {
|
|
5953
4722
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5954
4723
|
source?: string | undefined;
|
|
@@ -5987,7 +4756,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5987
4756
|
} | undefined;
|
|
5988
4757
|
readonly sortable?: boolean | undefined;
|
|
5989
4758
|
readonly inlineHelpText?: string | undefined;
|
|
5990
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5991
4759
|
readonly caseSensitive?: boolean | undefined;
|
|
5992
4760
|
readonly autonumberFormat?: string | undefined;
|
|
5993
4761
|
readonly index?: boolean | undefined;
|
|
@@ -6009,7 +4777,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6009
4777
|
readonly required?: boolean | undefined;
|
|
6010
4778
|
readonly multiple?: boolean | undefined;
|
|
6011
4779
|
readonly dependencies?: string[] | undefined;
|
|
6012
|
-
readonly theme?: string | undefined;
|
|
6013
4780
|
readonly externalId?: boolean | undefined;
|
|
6014
4781
|
readonly defaultValue?: unknown;
|
|
6015
4782
|
readonly group?: string | undefined;
|
|
@@ -6017,23 +4784,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6017
4784
|
readonly system?: boolean | undefined;
|
|
6018
4785
|
readonly min?: number | undefined;
|
|
6019
4786
|
readonly max?: number | undefined;
|
|
6020
|
-
readonly encryptionConfig?: {
|
|
6021
|
-
enabled: boolean;
|
|
6022
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6023
|
-
keyManagement: {
|
|
6024
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6025
|
-
keyId?: string | undefined;
|
|
6026
|
-
rotationPolicy?: {
|
|
6027
|
-
enabled: boolean;
|
|
6028
|
-
frequencyDays: number;
|
|
6029
|
-
retainOldVersions: number;
|
|
6030
|
-
autoRotate: boolean;
|
|
6031
|
-
} | undefined;
|
|
6032
|
-
};
|
|
6033
|
-
scope: "record" | "field" | "table" | "database";
|
|
6034
|
-
deterministicEncryption: boolean;
|
|
6035
|
-
searchableEncryption: boolean;
|
|
6036
|
-
} | undefined;
|
|
6037
4787
|
readonly columnName?: string | undefined;
|
|
6038
4788
|
readonly searchable?: boolean | undefined;
|
|
6039
4789
|
readonly unique?: boolean | undefined;
|
|
@@ -6042,7 +4792,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6042
4792
|
readonly scale?: number | undefined;
|
|
6043
4793
|
reference: string;
|
|
6044
4794
|
readonly referenceFilters?: string[] | undefined;
|
|
6045
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6046
4795
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6047
4796
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6048
4797
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6067,22 +4816,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
6067
4816
|
relationshipField?: string | undefined;
|
|
6068
4817
|
} | undefined;
|
|
6069
4818
|
readonly language?: string | undefined;
|
|
6070
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6071
4819
|
readonly maxRating?: number | undefined;
|
|
6072
|
-
readonly allowHalf?: boolean | undefined;
|
|
6073
|
-
readonly displayMap?: boolean | undefined;
|
|
6074
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6075
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6076
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6077
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6078
|
-
readonly presetColors?: string[] | undefined;
|
|
6079
4820
|
readonly step?: number | undefined;
|
|
6080
|
-
readonly showValue?: boolean | undefined;
|
|
6081
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6082
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6083
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6084
|
-
readonly displayValue?: boolean | undefined;
|
|
6085
|
-
readonly allowScanning?: boolean | undefined;
|
|
6086
4821
|
readonly currencyConfig?: {
|
|
6087
4822
|
precision: number;
|
|
6088
4823
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6136,29 +4871,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6136
4871
|
} | undefined;
|
|
6137
4872
|
maxVersions?: number | undefined;
|
|
6138
4873
|
} | undefined;
|
|
6139
|
-
readonly
|
|
6140
|
-
field: string;
|
|
6141
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6142
|
-
preserveFormat: boolean;
|
|
6143
|
-
preserveLength: boolean;
|
|
6144
|
-
pattern?: string | undefined;
|
|
6145
|
-
roles?: string[] | undefined;
|
|
6146
|
-
exemptRoles?: string[] | undefined;
|
|
6147
|
-
} | undefined;
|
|
6148
|
-
readonly auditTrail?: boolean | undefined;
|
|
6149
|
-
readonly cached?: {
|
|
6150
|
-
enabled: boolean;
|
|
6151
|
-
ttl: number;
|
|
6152
|
-
invalidateOn: string[];
|
|
6153
|
-
} | undefined;
|
|
6154
|
-
readonly dataQuality?: {
|
|
6155
|
-
uniqueness: boolean;
|
|
6156
|
-
completeness: number;
|
|
6157
|
-
accuracy?: {
|
|
6158
|
-
source: string;
|
|
6159
|
-
threshold: number;
|
|
6160
|
-
} | undefined;
|
|
6161
|
-
} | undefined;
|
|
4874
|
+
readonly trackHistory?: boolean | undefined;
|
|
6162
4875
|
readonly visibleWhen?: {
|
|
6163
4876
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6164
4877
|
source?: string | undefined;
|
|
@@ -6197,7 +4910,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6197
4910
|
} | undefined;
|
|
6198
4911
|
readonly sortable?: boolean | undefined;
|
|
6199
4912
|
readonly inlineHelpText?: string | undefined;
|
|
6200
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6201
4913
|
readonly caseSensitive?: boolean | undefined;
|
|
6202
4914
|
readonly autonumberFormat?: string | undefined;
|
|
6203
4915
|
readonly index?: boolean | undefined;
|
|
@@ -6219,7 +4931,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6219
4931
|
readonly required?: boolean | undefined;
|
|
6220
4932
|
readonly multiple?: boolean | undefined;
|
|
6221
4933
|
readonly dependencies?: string[] | undefined;
|
|
6222
|
-
readonly theme?: string | undefined;
|
|
6223
4934
|
readonly externalId?: boolean | undefined;
|
|
6224
4935
|
readonly defaultValue?: unknown;
|
|
6225
4936
|
readonly group?: string | undefined;
|
|
@@ -6227,23 +4938,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6227
4938
|
readonly system?: boolean | undefined;
|
|
6228
4939
|
readonly min?: number | undefined;
|
|
6229
4940
|
readonly max?: number | undefined;
|
|
6230
|
-
readonly encryptionConfig?: {
|
|
6231
|
-
enabled: boolean;
|
|
6232
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6233
|
-
keyManagement: {
|
|
6234
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6235
|
-
keyId?: string | undefined;
|
|
6236
|
-
rotationPolicy?: {
|
|
6237
|
-
enabled: boolean;
|
|
6238
|
-
frequencyDays: number;
|
|
6239
|
-
retainOldVersions: number;
|
|
6240
|
-
autoRotate: boolean;
|
|
6241
|
-
} | undefined;
|
|
6242
|
-
};
|
|
6243
|
-
scope: "record" | "field" | "table" | "database";
|
|
6244
|
-
deterministicEncryption: boolean;
|
|
6245
|
-
searchableEncryption: boolean;
|
|
6246
|
-
} | undefined;
|
|
6247
4941
|
readonly columnName?: string | undefined;
|
|
6248
4942
|
readonly searchable?: boolean | undefined;
|
|
6249
4943
|
readonly unique?: boolean | undefined;
|
|
@@ -6252,7 +4946,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6252
4946
|
readonly scale?: number | undefined;
|
|
6253
4947
|
readonly reference?: string | undefined;
|
|
6254
4948
|
readonly referenceFilters?: string[] | undefined;
|
|
6255
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6256
4949
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6257
4950
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6258
4951
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6277,22 +4970,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
6277
4970
|
relationshipField?: string | undefined;
|
|
6278
4971
|
} | undefined;
|
|
6279
4972
|
readonly language?: string | undefined;
|
|
6280
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6281
4973
|
readonly maxRating?: number | undefined;
|
|
6282
|
-
readonly allowHalf?: boolean | undefined;
|
|
6283
|
-
readonly displayMap?: boolean | undefined;
|
|
6284
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6285
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6286
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6287
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6288
|
-
readonly presetColors?: string[] | undefined;
|
|
6289
4974
|
readonly step?: number | undefined;
|
|
6290
|
-
readonly showValue?: boolean | undefined;
|
|
6291
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6292
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6293
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6294
|
-
readonly displayValue?: boolean | undefined;
|
|
6295
|
-
readonly allowScanning?: boolean | undefined;
|
|
6296
4975
|
readonly currencyConfig?: {
|
|
6297
4976
|
precision: number;
|
|
6298
4977
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6346,29 +5025,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6346
5025
|
} | undefined;
|
|
6347
5026
|
maxVersions?: number | undefined;
|
|
6348
5027
|
} | undefined;
|
|
6349
|
-
readonly
|
|
6350
|
-
field: string;
|
|
6351
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6352
|
-
preserveFormat: boolean;
|
|
6353
|
-
preserveLength: boolean;
|
|
6354
|
-
pattern?: string | undefined;
|
|
6355
|
-
roles?: string[] | undefined;
|
|
6356
|
-
exemptRoles?: string[] | undefined;
|
|
6357
|
-
} | undefined;
|
|
6358
|
-
readonly auditTrail?: boolean | undefined;
|
|
6359
|
-
readonly cached?: {
|
|
6360
|
-
enabled: boolean;
|
|
6361
|
-
ttl: number;
|
|
6362
|
-
invalidateOn: string[];
|
|
6363
|
-
} | undefined;
|
|
6364
|
-
readonly dataQuality?: {
|
|
6365
|
-
uniqueness: boolean;
|
|
6366
|
-
completeness: number;
|
|
6367
|
-
accuracy?: {
|
|
6368
|
-
source: string;
|
|
6369
|
-
threshold: number;
|
|
6370
|
-
} | undefined;
|
|
6371
|
-
} | undefined;
|
|
5028
|
+
readonly trackHistory?: boolean | undefined;
|
|
6372
5029
|
readonly visibleWhen?: {
|
|
6373
5030
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6374
5031
|
source?: string | undefined;
|
|
@@ -6407,7 +5064,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6407
5064
|
} | undefined;
|
|
6408
5065
|
readonly sortable?: boolean | undefined;
|
|
6409
5066
|
readonly inlineHelpText?: string | undefined;
|
|
6410
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6411
5067
|
readonly caseSensitive?: boolean | undefined;
|
|
6412
5068
|
readonly autonumberFormat?: string | undefined;
|
|
6413
5069
|
readonly index?: boolean | undefined;
|
|
@@ -6429,7 +5085,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6429
5085
|
readonly required?: boolean | undefined;
|
|
6430
5086
|
readonly multiple?: boolean | undefined;
|
|
6431
5087
|
readonly dependencies?: string[] | undefined;
|
|
6432
|
-
readonly theme?: string | undefined;
|
|
6433
5088
|
readonly externalId?: boolean | undefined;
|
|
6434
5089
|
readonly defaultValue?: unknown;
|
|
6435
5090
|
readonly group?: string | undefined;
|
|
@@ -6437,23 +5092,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6437
5092
|
readonly system?: boolean | undefined;
|
|
6438
5093
|
readonly min?: number | undefined;
|
|
6439
5094
|
readonly max?: number | undefined;
|
|
6440
|
-
readonly encryptionConfig?: {
|
|
6441
|
-
enabled: boolean;
|
|
6442
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6443
|
-
keyManagement: {
|
|
6444
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6445
|
-
keyId?: string | undefined;
|
|
6446
|
-
rotationPolicy?: {
|
|
6447
|
-
enabled: boolean;
|
|
6448
|
-
frequencyDays: number;
|
|
6449
|
-
retainOldVersions: number;
|
|
6450
|
-
autoRotate: boolean;
|
|
6451
|
-
} | undefined;
|
|
6452
|
-
};
|
|
6453
|
-
scope: "record" | "field" | "table" | "database";
|
|
6454
|
-
deterministicEncryption: boolean;
|
|
6455
|
-
searchableEncryption: boolean;
|
|
6456
|
-
} | undefined;
|
|
6457
5095
|
readonly columnName?: string | undefined;
|
|
6458
5096
|
readonly searchable?: boolean | undefined;
|
|
6459
5097
|
readonly unique?: boolean | undefined;
|
|
@@ -6462,7 +5100,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6462
5100
|
readonly scale?: number | undefined;
|
|
6463
5101
|
readonly reference?: string | undefined;
|
|
6464
5102
|
readonly referenceFilters?: string[] | undefined;
|
|
6465
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6466
5103
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6467
5104
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6468
5105
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6487,22 +5124,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
6487
5124
|
relationshipField?: string | undefined;
|
|
6488
5125
|
} | undefined;
|
|
6489
5126
|
readonly language?: string | undefined;
|
|
6490
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6491
5127
|
readonly maxRating?: number | undefined;
|
|
6492
|
-
readonly allowHalf?: boolean | undefined;
|
|
6493
|
-
readonly displayMap?: boolean | undefined;
|
|
6494
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6495
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6496
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6497
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6498
|
-
readonly presetColors?: string[] | undefined;
|
|
6499
5128
|
readonly step?: number | undefined;
|
|
6500
|
-
readonly showValue?: boolean | undefined;
|
|
6501
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6502
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6503
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6504
|
-
readonly displayValue?: boolean | undefined;
|
|
6505
|
-
readonly allowScanning?: boolean | undefined;
|
|
6506
5129
|
readonly currencyConfig?: {
|
|
6507
5130
|
precision: number;
|
|
6508
5131
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6556,29 +5179,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6556
5179
|
} | undefined;
|
|
6557
5180
|
maxVersions?: number | undefined;
|
|
6558
5181
|
} | undefined;
|
|
6559
|
-
readonly
|
|
6560
|
-
field: string;
|
|
6561
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6562
|
-
preserveFormat: boolean;
|
|
6563
|
-
preserveLength: boolean;
|
|
6564
|
-
pattern?: string | undefined;
|
|
6565
|
-
roles?: string[] | undefined;
|
|
6566
|
-
exemptRoles?: string[] | undefined;
|
|
6567
|
-
} | undefined;
|
|
6568
|
-
readonly auditTrail?: boolean | undefined;
|
|
6569
|
-
readonly cached?: {
|
|
6570
|
-
enabled: boolean;
|
|
6571
|
-
ttl: number;
|
|
6572
|
-
invalidateOn: string[];
|
|
6573
|
-
} | undefined;
|
|
6574
|
-
readonly dataQuality?: {
|
|
6575
|
-
uniqueness: boolean;
|
|
6576
|
-
completeness: number;
|
|
6577
|
-
accuracy?: {
|
|
6578
|
-
source: string;
|
|
6579
|
-
threshold: number;
|
|
6580
|
-
} | undefined;
|
|
6581
|
-
} | undefined;
|
|
5182
|
+
readonly trackHistory?: boolean | undefined;
|
|
6582
5183
|
readonly visibleWhen?: {
|
|
6583
5184
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6584
5185
|
source?: string | undefined;
|
|
@@ -6617,7 +5218,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6617
5218
|
} | undefined;
|
|
6618
5219
|
readonly sortable?: boolean | undefined;
|
|
6619
5220
|
readonly inlineHelpText?: string | undefined;
|
|
6620
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6621
5221
|
readonly caseSensitive?: boolean | undefined;
|
|
6622
5222
|
readonly autonumberFormat?: string | undefined;
|
|
6623
5223
|
readonly index?: boolean | undefined;
|
|
@@ -6639,7 +5239,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6639
5239
|
readonly required?: boolean | undefined;
|
|
6640
5240
|
readonly multiple?: boolean | undefined;
|
|
6641
5241
|
readonly dependencies?: string[] | undefined;
|
|
6642
|
-
readonly theme?: string | undefined;
|
|
6643
5242
|
readonly externalId?: boolean | undefined;
|
|
6644
5243
|
readonly defaultValue?: unknown;
|
|
6645
5244
|
readonly group?: string | undefined;
|
|
@@ -6647,23 +5246,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6647
5246
|
readonly system?: boolean | undefined;
|
|
6648
5247
|
readonly min?: number | undefined;
|
|
6649
5248
|
readonly max?: number | undefined;
|
|
6650
|
-
readonly encryptionConfig?: {
|
|
6651
|
-
enabled: boolean;
|
|
6652
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6653
|
-
keyManagement: {
|
|
6654
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6655
|
-
keyId?: string | undefined;
|
|
6656
|
-
rotationPolicy?: {
|
|
6657
|
-
enabled: boolean;
|
|
6658
|
-
frequencyDays: number;
|
|
6659
|
-
retainOldVersions: number;
|
|
6660
|
-
autoRotate: boolean;
|
|
6661
|
-
} | undefined;
|
|
6662
|
-
};
|
|
6663
|
-
scope: "record" | "field" | "table" | "database";
|
|
6664
|
-
deterministicEncryption: boolean;
|
|
6665
|
-
searchableEncryption: boolean;
|
|
6666
|
-
} | undefined;
|
|
6667
5249
|
readonly columnName?: string | undefined;
|
|
6668
5250
|
readonly searchable?: boolean | undefined;
|
|
6669
5251
|
readonly unique?: boolean | undefined;
|
|
@@ -6672,7 +5254,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6672
5254
|
readonly scale?: number | undefined;
|
|
6673
5255
|
readonly reference?: string | undefined;
|
|
6674
5256
|
readonly referenceFilters?: string[] | undefined;
|
|
6675
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6676
5257
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6677
5258
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6678
5259
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6697,22 +5278,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
6697
5278
|
relationshipField?: string | undefined;
|
|
6698
5279
|
} | undefined;
|
|
6699
5280
|
readonly language?: string | undefined;
|
|
6700
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6701
5281
|
readonly maxRating?: number | undefined;
|
|
6702
|
-
readonly allowHalf?: boolean | undefined;
|
|
6703
|
-
readonly displayMap?: boolean | undefined;
|
|
6704
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6705
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6706
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6707
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6708
|
-
readonly presetColors?: string[] | undefined;
|
|
6709
5282
|
readonly step?: number | undefined;
|
|
6710
|
-
readonly showValue?: boolean | undefined;
|
|
6711
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6712
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6713
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6714
|
-
readonly displayValue?: boolean | undefined;
|
|
6715
|
-
readonly allowScanning?: boolean | undefined;
|
|
6716
5283
|
readonly currencyConfig?: {
|
|
6717
5284
|
precision: number;
|
|
6718
5285
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6766,29 +5333,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6766
5333
|
} | undefined;
|
|
6767
5334
|
maxVersions?: number | undefined;
|
|
6768
5335
|
} | undefined;
|
|
6769
|
-
readonly
|
|
6770
|
-
field: string;
|
|
6771
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6772
|
-
preserveFormat: boolean;
|
|
6773
|
-
preserveLength: boolean;
|
|
6774
|
-
pattern?: string | undefined;
|
|
6775
|
-
roles?: string[] | undefined;
|
|
6776
|
-
exemptRoles?: string[] | undefined;
|
|
6777
|
-
} | undefined;
|
|
6778
|
-
readonly auditTrail?: boolean | undefined;
|
|
6779
|
-
readonly cached?: {
|
|
6780
|
-
enabled: boolean;
|
|
6781
|
-
ttl: number;
|
|
6782
|
-
invalidateOn: string[];
|
|
6783
|
-
} | undefined;
|
|
6784
|
-
readonly dataQuality?: {
|
|
6785
|
-
uniqueness: boolean;
|
|
6786
|
-
completeness: number;
|
|
6787
|
-
accuracy?: {
|
|
6788
|
-
source: string;
|
|
6789
|
-
threshold: number;
|
|
6790
|
-
} | undefined;
|
|
6791
|
-
} | undefined;
|
|
5336
|
+
readonly trackHistory?: boolean | undefined;
|
|
6792
5337
|
readonly visibleWhen?: {
|
|
6793
5338
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6794
5339
|
source?: string | undefined;
|
|
@@ -6827,7 +5372,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6827
5372
|
} | undefined;
|
|
6828
5373
|
readonly sortable?: boolean | undefined;
|
|
6829
5374
|
readonly inlineHelpText?: string | undefined;
|
|
6830
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6831
5375
|
readonly caseSensitive?: boolean | undefined;
|
|
6832
5376
|
readonly autonumberFormat?: string | undefined;
|
|
6833
5377
|
readonly index?: boolean | undefined;
|
|
@@ -6849,7 +5393,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6849
5393
|
readonly required?: boolean | undefined;
|
|
6850
5394
|
readonly multiple?: boolean | undefined;
|
|
6851
5395
|
readonly dependencies?: string[] | undefined;
|
|
6852
|
-
readonly theme?: string | undefined;
|
|
6853
5396
|
readonly externalId?: boolean | undefined;
|
|
6854
5397
|
readonly defaultValue?: unknown;
|
|
6855
5398
|
readonly group?: string | undefined;
|
|
@@ -6857,23 +5400,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6857
5400
|
readonly system?: boolean | undefined;
|
|
6858
5401
|
readonly min?: number | undefined;
|
|
6859
5402
|
readonly max?: number | undefined;
|
|
6860
|
-
readonly encryptionConfig?: {
|
|
6861
|
-
enabled: boolean;
|
|
6862
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6863
|
-
keyManagement: {
|
|
6864
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6865
|
-
keyId?: string | undefined;
|
|
6866
|
-
rotationPolicy?: {
|
|
6867
|
-
enabled: boolean;
|
|
6868
|
-
frequencyDays: number;
|
|
6869
|
-
retainOldVersions: number;
|
|
6870
|
-
autoRotate: boolean;
|
|
6871
|
-
} | undefined;
|
|
6872
|
-
};
|
|
6873
|
-
scope: "record" | "field" | "table" | "database";
|
|
6874
|
-
deterministicEncryption: boolean;
|
|
6875
|
-
searchableEncryption: boolean;
|
|
6876
|
-
} | undefined;
|
|
6877
5403
|
readonly columnName?: string | undefined;
|
|
6878
5404
|
readonly searchable?: boolean | undefined;
|
|
6879
5405
|
readonly unique?: boolean | undefined;
|
|
@@ -6882,7 +5408,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6882
5408
|
readonly scale?: number | undefined;
|
|
6883
5409
|
reference: string;
|
|
6884
5410
|
readonly referenceFilters?: string[] | undefined;
|
|
6885
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6886
5411
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6887
5412
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6888
5413
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6907,22 +5432,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
6907
5432
|
relationshipField?: string | undefined;
|
|
6908
5433
|
} | undefined;
|
|
6909
5434
|
readonly language?: string | undefined;
|
|
6910
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6911
5435
|
readonly maxRating?: number | undefined;
|
|
6912
|
-
readonly allowHalf?: boolean | undefined;
|
|
6913
|
-
readonly displayMap?: boolean | undefined;
|
|
6914
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6915
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6916
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6917
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6918
|
-
readonly presetColors?: string[] | undefined;
|
|
6919
5436
|
readonly step?: number | undefined;
|
|
6920
|
-
readonly showValue?: boolean | undefined;
|
|
6921
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6922
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6923
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6924
|
-
readonly displayValue?: boolean | undefined;
|
|
6925
|
-
readonly allowScanning?: boolean | undefined;
|
|
6926
5437
|
readonly currencyConfig?: {
|
|
6927
5438
|
precision: number;
|
|
6928
5439
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6976,29 +5487,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6976
5487
|
} | undefined;
|
|
6977
5488
|
maxVersions?: number | undefined;
|
|
6978
5489
|
} | undefined;
|
|
6979
|
-
readonly
|
|
6980
|
-
field: string;
|
|
6981
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6982
|
-
preserveFormat: boolean;
|
|
6983
|
-
preserveLength: boolean;
|
|
6984
|
-
pattern?: string | undefined;
|
|
6985
|
-
roles?: string[] | undefined;
|
|
6986
|
-
exemptRoles?: string[] | undefined;
|
|
6987
|
-
} | undefined;
|
|
6988
|
-
readonly auditTrail?: boolean | undefined;
|
|
6989
|
-
readonly cached?: {
|
|
6990
|
-
enabled: boolean;
|
|
6991
|
-
ttl: number;
|
|
6992
|
-
invalidateOn: string[];
|
|
6993
|
-
} | undefined;
|
|
6994
|
-
readonly dataQuality?: {
|
|
6995
|
-
uniqueness: boolean;
|
|
6996
|
-
completeness: number;
|
|
6997
|
-
accuracy?: {
|
|
6998
|
-
source: string;
|
|
6999
|
-
threshold: number;
|
|
7000
|
-
} | undefined;
|
|
7001
|
-
} | undefined;
|
|
5490
|
+
readonly trackHistory?: boolean | undefined;
|
|
7002
5491
|
readonly visibleWhen?: {
|
|
7003
5492
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7004
5493
|
source?: string | undefined;
|
|
@@ -7037,7 +5526,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
7037
5526
|
} | undefined;
|
|
7038
5527
|
readonly sortable?: boolean | undefined;
|
|
7039
5528
|
readonly inlineHelpText?: string | undefined;
|
|
7040
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7041
5529
|
readonly caseSensitive?: boolean | undefined;
|
|
7042
5530
|
readonly autonumberFormat?: string | undefined;
|
|
7043
5531
|
readonly index?: boolean | undefined;
|
|
@@ -7059,7 +5547,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
7059
5547
|
readonly required?: boolean | undefined;
|
|
7060
5548
|
readonly multiple?: boolean | undefined;
|
|
7061
5549
|
readonly dependencies?: string[] | undefined;
|
|
7062
|
-
readonly theme?: string | undefined;
|
|
7063
5550
|
readonly externalId?: boolean | undefined;
|
|
7064
5551
|
readonly defaultValue?: unknown;
|
|
7065
5552
|
readonly group?: string | undefined;
|
|
@@ -7067,23 +5554,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
7067
5554
|
readonly system?: boolean | undefined;
|
|
7068
5555
|
readonly min?: number | undefined;
|
|
7069
5556
|
readonly max?: number | undefined;
|
|
7070
|
-
readonly encryptionConfig?: {
|
|
7071
|
-
enabled: boolean;
|
|
7072
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
7073
|
-
keyManagement: {
|
|
7074
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
7075
|
-
keyId?: string | undefined;
|
|
7076
|
-
rotationPolicy?: {
|
|
7077
|
-
enabled: boolean;
|
|
7078
|
-
frequencyDays: number;
|
|
7079
|
-
retainOldVersions: number;
|
|
7080
|
-
autoRotate: boolean;
|
|
7081
|
-
} | undefined;
|
|
7082
|
-
};
|
|
7083
|
-
scope: "record" | "field" | "table" | "database";
|
|
7084
|
-
deterministicEncryption: boolean;
|
|
7085
|
-
searchableEncryption: boolean;
|
|
7086
|
-
} | undefined;
|
|
7087
5557
|
readonly columnName?: string | undefined;
|
|
7088
5558
|
readonly searchable?: boolean | undefined;
|
|
7089
5559
|
readonly unique?: boolean | undefined;
|
|
@@ -7092,7 +5562,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
7092
5562
|
readonly scale?: number | undefined;
|
|
7093
5563
|
readonly reference?: string | undefined;
|
|
7094
5564
|
readonly referenceFilters?: string[] | undefined;
|
|
7095
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7096
5565
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7097
5566
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7098
5567
|
readonly inlineTitle?: string | undefined;
|
|
@@ -7117,22 +5586,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
7117
5586
|
relationshipField?: string | undefined;
|
|
7118
5587
|
} | undefined;
|
|
7119
5588
|
readonly language?: string | undefined;
|
|
7120
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7121
5589
|
readonly maxRating?: number | undefined;
|
|
7122
|
-
readonly allowHalf?: boolean | undefined;
|
|
7123
|
-
readonly displayMap?: boolean | undefined;
|
|
7124
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
7125
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
7126
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
7127
|
-
readonly allowAlpha?: boolean | undefined;
|
|
7128
|
-
readonly presetColors?: string[] | undefined;
|
|
7129
5590
|
readonly step?: number | undefined;
|
|
7130
|
-
readonly showValue?: boolean | undefined;
|
|
7131
|
-
readonly marks?: Record<string, string> | undefined;
|
|
7132
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
7133
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
7134
|
-
readonly displayValue?: boolean | undefined;
|
|
7135
|
-
readonly allowScanning?: boolean | undefined;
|
|
7136
5591
|
readonly currencyConfig?: {
|
|
7137
5592
|
precision: number;
|
|
7138
5593
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -7186,29 +5641,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
7186
5641
|
} | undefined;
|
|
7187
5642
|
maxVersions?: number | undefined;
|
|
7188
5643
|
} | undefined;
|
|
7189
|
-
readonly
|
|
7190
|
-
field: string;
|
|
7191
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
7192
|
-
preserveFormat: boolean;
|
|
7193
|
-
preserveLength: boolean;
|
|
7194
|
-
pattern?: string | undefined;
|
|
7195
|
-
roles?: string[] | undefined;
|
|
7196
|
-
exemptRoles?: string[] | undefined;
|
|
7197
|
-
} | undefined;
|
|
7198
|
-
readonly auditTrail?: boolean | undefined;
|
|
7199
|
-
readonly cached?: {
|
|
7200
|
-
enabled: boolean;
|
|
7201
|
-
ttl: number;
|
|
7202
|
-
invalidateOn: string[];
|
|
7203
|
-
} | undefined;
|
|
7204
|
-
readonly dataQuality?: {
|
|
7205
|
-
uniqueness: boolean;
|
|
7206
|
-
completeness: number;
|
|
7207
|
-
accuracy?: {
|
|
7208
|
-
source: string;
|
|
7209
|
-
threshold: number;
|
|
7210
|
-
} | undefined;
|
|
7211
|
-
} | undefined;
|
|
5644
|
+
readonly trackHistory?: boolean | undefined;
|
|
7212
5645
|
readonly visibleWhen?: {
|
|
7213
5646
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7214
5647
|
source?: string | undefined;
|
|
@@ -7247,7 +5680,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
7247
5680
|
} | undefined;
|
|
7248
5681
|
readonly sortable?: boolean | undefined;
|
|
7249
5682
|
readonly inlineHelpText?: string | undefined;
|
|
7250
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7251
5683
|
readonly caseSensitive?: boolean | undefined;
|
|
7252
5684
|
readonly autonumberFormat?: string | undefined;
|
|
7253
5685
|
readonly index?: boolean | undefined;
|
|
@@ -7269,7 +5701,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
7269
5701
|
readonly required?: boolean | undefined;
|
|
7270
5702
|
readonly multiple?: boolean | undefined;
|
|
7271
5703
|
readonly dependencies?: string[] | undefined;
|
|
7272
|
-
readonly theme?: string | undefined;
|
|
7273
5704
|
readonly externalId?: boolean | undefined;
|
|
7274
5705
|
readonly defaultValue?: unknown;
|
|
7275
5706
|
readonly group?: string | undefined;
|
|
@@ -7277,23 +5708,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
7277
5708
|
readonly system?: boolean | undefined;
|
|
7278
5709
|
readonly min?: number | undefined;
|
|
7279
5710
|
readonly max?: number | undefined;
|
|
7280
|
-
readonly encryptionConfig?: {
|
|
7281
|
-
enabled: boolean;
|
|
7282
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
7283
|
-
keyManagement: {
|
|
7284
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
7285
|
-
keyId?: string | undefined;
|
|
7286
|
-
rotationPolicy?: {
|
|
7287
|
-
enabled: boolean;
|
|
7288
|
-
frequencyDays: number;
|
|
7289
|
-
retainOldVersions: number;
|
|
7290
|
-
autoRotate: boolean;
|
|
7291
|
-
} | undefined;
|
|
7292
|
-
};
|
|
7293
|
-
scope: "record" | "field" | "table" | "database";
|
|
7294
|
-
deterministicEncryption: boolean;
|
|
7295
|
-
searchableEncryption: boolean;
|
|
7296
|
-
} | undefined;
|
|
7297
5711
|
readonly columnName?: string | undefined;
|
|
7298
5712
|
readonly searchable?: boolean | undefined;
|
|
7299
5713
|
readonly unique?: boolean | undefined;
|
|
@@ -7302,7 +5716,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
7302
5716
|
readonly scale?: number | undefined;
|
|
7303
5717
|
readonly reference?: string | undefined;
|
|
7304
5718
|
readonly referenceFilters?: string[] | undefined;
|
|
7305
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7306
5719
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7307
5720
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7308
5721
|
readonly inlineTitle?: string | undefined;
|
|
@@ -7327,22 +5740,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
7327
5740
|
relationshipField?: string | undefined;
|
|
7328
5741
|
} | undefined;
|
|
7329
5742
|
readonly language?: string | undefined;
|
|
7330
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7331
5743
|
readonly maxRating?: number | undefined;
|
|
7332
|
-
readonly allowHalf?: boolean | undefined;
|
|
7333
|
-
readonly displayMap?: boolean | undefined;
|
|
7334
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
7335
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
7336
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
7337
|
-
readonly allowAlpha?: boolean | undefined;
|
|
7338
|
-
readonly presetColors?: string[] | undefined;
|
|
7339
5744
|
readonly step?: number | undefined;
|
|
7340
|
-
readonly showValue?: boolean | undefined;
|
|
7341
|
-
readonly marks?: Record<string, string> | undefined;
|
|
7342
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
7343
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
7344
|
-
readonly displayValue?: boolean | undefined;
|
|
7345
|
-
readonly allowScanning?: boolean | undefined;
|
|
7346
5745
|
readonly currencyConfig?: {
|
|
7347
5746
|
precision: number;
|
|
7348
5747
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -7396,29 +5795,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
7396
5795
|
} | undefined;
|
|
7397
5796
|
maxVersions?: number | undefined;
|
|
7398
5797
|
} | undefined;
|
|
7399
|
-
readonly
|
|
7400
|
-
field: string;
|
|
7401
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
7402
|
-
preserveFormat: boolean;
|
|
7403
|
-
preserveLength: boolean;
|
|
7404
|
-
pattern?: string | undefined;
|
|
7405
|
-
roles?: string[] | undefined;
|
|
7406
|
-
exemptRoles?: string[] | undefined;
|
|
7407
|
-
} | undefined;
|
|
7408
|
-
readonly auditTrail?: boolean | undefined;
|
|
7409
|
-
readonly cached?: {
|
|
7410
|
-
enabled: boolean;
|
|
7411
|
-
ttl: number;
|
|
7412
|
-
invalidateOn: string[];
|
|
7413
|
-
} | undefined;
|
|
7414
|
-
readonly dataQuality?: {
|
|
7415
|
-
uniqueness: boolean;
|
|
7416
|
-
completeness: number;
|
|
7417
|
-
accuracy?: {
|
|
7418
|
-
source: string;
|
|
7419
|
-
threshold: number;
|
|
7420
|
-
} | undefined;
|
|
7421
|
-
} | undefined;
|
|
5798
|
+
readonly trackHistory?: boolean | undefined;
|
|
7422
5799
|
readonly visibleWhen?: {
|
|
7423
5800
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7424
5801
|
source?: string | undefined;
|
|
@@ -7457,7 +5834,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
7457
5834
|
} | undefined;
|
|
7458
5835
|
readonly sortable?: boolean | undefined;
|
|
7459
5836
|
readonly inlineHelpText?: string | undefined;
|
|
7460
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7461
5837
|
readonly caseSensitive?: boolean | undefined;
|
|
7462
5838
|
readonly autonumberFormat?: string | undefined;
|
|
7463
5839
|
readonly index?: boolean | undefined;
|
|
@@ -7506,7 +5882,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7506
5882
|
multiple: boolean;
|
|
7507
5883
|
unique: boolean;
|
|
7508
5884
|
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
7509
|
-
auditTrail: boolean;
|
|
7510
5885
|
hidden: boolean;
|
|
7511
5886
|
readonly: boolean;
|
|
7512
5887
|
sortable: boolean;
|
|
@@ -7532,7 +5907,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7532
5907
|
}[] | undefined;
|
|
7533
5908
|
reference?: string | undefined;
|
|
7534
5909
|
referenceFilters?: string[] | undefined;
|
|
7535
|
-
writeRequiresMasterRead?: boolean | undefined;
|
|
7536
5910
|
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7537
5911
|
inlineTitle?: string | undefined;
|
|
7538
5912
|
inlineColumns?: any[] | undefined;
|
|
@@ -7564,23 +5938,8 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7564
5938
|
relationshipField?: string | undefined;
|
|
7565
5939
|
} | undefined;
|
|
7566
5940
|
language?: string | undefined;
|
|
7567
|
-
theme?: string | undefined;
|
|
7568
|
-
lineNumbers?: boolean | undefined;
|
|
7569
5941
|
maxRating?: number | undefined;
|
|
7570
|
-
allowHalf?: boolean | undefined;
|
|
7571
|
-
displayMap?: boolean | undefined;
|
|
7572
|
-
allowGeocoding?: boolean | undefined;
|
|
7573
|
-
addressFormat?: "us" | "uk" | "international" | undefined;
|
|
7574
|
-
colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
7575
|
-
allowAlpha?: boolean | undefined;
|
|
7576
|
-
presetColors?: string[] | undefined;
|
|
7577
5942
|
step?: number | undefined;
|
|
7578
|
-
showValue?: boolean | undefined;
|
|
7579
|
-
marks?: Record<string, string> | undefined;
|
|
7580
|
-
barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
7581
|
-
qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
7582
|
-
displayValue?: boolean | undefined;
|
|
7583
|
-
allowScanning?: boolean | undefined;
|
|
7584
5943
|
currencyConfig?: {
|
|
7585
5944
|
precision: number;
|
|
7586
5945
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -7634,46 +5993,8 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7634
5993
|
} | undefined;
|
|
7635
5994
|
maxVersions?: number | undefined;
|
|
7636
5995
|
} | undefined;
|
|
7637
|
-
|
|
7638
|
-
enabled: boolean;
|
|
7639
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
7640
|
-
keyManagement: {
|
|
7641
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
7642
|
-
keyId?: string | undefined;
|
|
7643
|
-
rotationPolicy?: {
|
|
7644
|
-
enabled: boolean;
|
|
7645
|
-
frequencyDays: number;
|
|
7646
|
-
retainOldVersions: number;
|
|
7647
|
-
autoRotate: boolean;
|
|
7648
|
-
} | undefined;
|
|
7649
|
-
};
|
|
7650
|
-
scope: "record" | "field" | "table" | "database";
|
|
7651
|
-
deterministicEncryption: boolean;
|
|
7652
|
-
searchableEncryption: boolean;
|
|
7653
|
-
} | undefined;
|
|
7654
|
-
maskingRule?: {
|
|
7655
|
-
field: string;
|
|
7656
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
7657
|
-
preserveFormat: boolean;
|
|
7658
|
-
preserveLength: boolean;
|
|
7659
|
-
pattern?: string | undefined;
|
|
7660
|
-
roles?: string[] | undefined;
|
|
7661
|
-
exemptRoles?: string[] | undefined;
|
|
7662
|
-
} | undefined;
|
|
5996
|
+
trackHistory?: boolean | undefined;
|
|
7663
5997
|
dependencies?: string[] | undefined;
|
|
7664
|
-
cached?: {
|
|
7665
|
-
enabled: boolean;
|
|
7666
|
-
ttl: number;
|
|
7667
|
-
invalidateOn: string[];
|
|
7668
|
-
} | undefined;
|
|
7669
|
-
dataQuality?: {
|
|
7670
|
-
uniqueness: boolean;
|
|
7671
|
-
completeness: number;
|
|
7672
|
-
accuracy?: {
|
|
7673
|
-
source: string;
|
|
7674
|
-
threshold: number;
|
|
7675
|
-
} | undefined;
|
|
7676
|
-
} | undefined;
|
|
7677
5998
|
group?: string | undefined;
|
|
7678
5999
|
visibleWhen?: {
|
|
7679
6000
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -7745,7 +6066,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7745
6066
|
} | undefined;
|
|
7746
6067
|
system?: boolean | undefined;
|
|
7747
6068
|
inlineHelpText?: string | undefined;
|
|
7748
|
-
trackFeedHistory?: boolean | undefined;
|
|
7749
6069
|
caseSensitive?: boolean | undefined;
|
|
7750
6070
|
autonumberFormat?: string | undefined;
|
|
7751
6071
|
}>;
|
|
@@ -7836,12 +6156,13 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7836
6156
|
key: string;
|
|
7837
6157
|
interval?: string | undefined;
|
|
7838
6158
|
} | undefined;
|
|
7839
|
-
cdc?: {
|
|
7840
|
-
enabled: boolean;
|
|
7841
|
-
events: ("delete" | "update" | "insert")[];
|
|
7842
|
-
destination: string;
|
|
7843
|
-
} | undefined;
|
|
7844
6159
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
6160
|
+
activityMilestones?: {
|
|
6161
|
+
field: string;
|
|
6162
|
+
value: string;
|
|
6163
|
+
summary: string;
|
|
6164
|
+
type?: string | undefined;
|
|
6165
|
+
}[] | undefined;
|
|
7845
6166
|
displayNameField?: string | undefined;
|
|
7846
6167
|
recordName?: {
|
|
7847
6168
|
type: "text" | "autonumber";
|
|
@@ -8152,7 +6473,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8152
6473
|
clone: boolean;
|
|
8153
6474
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
8154
6475
|
} | undefined;
|
|
8155
|
-
recordTypes?: string[] | undefined;
|
|
8156
6476
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
8157
6477
|
publicSharing?: {
|
|
8158
6478
|
enabled: boolean;
|
|
@@ -8302,7 +6622,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8302
6622
|
readonly required?: boolean | undefined;
|
|
8303
6623
|
readonly multiple?: boolean | undefined;
|
|
8304
6624
|
readonly dependencies?: string[] | undefined;
|
|
8305
|
-
readonly theme?: string | undefined;
|
|
8306
6625
|
readonly externalId?: boolean | undefined;
|
|
8307
6626
|
readonly defaultValue?: unknown;
|
|
8308
6627
|
readonly group?: string | undefined;
|
|
@@ -8310,23 +6629,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8310
6629
|
readonly system?: boolean | undefined;
|
|
8311
6630
|
readonly min?: number | undefined;
|
|
8312
6631
|
readonly max?: number | undefined;
|
|
8313
|
-
readonly encryptionConfig?: {
|
|
8314
|
-
enabled: boolean;
|
|
8315
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8316
|
-
keyManagement: {
|
|
8317
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8318
|
-
keyId?: string | undefined;
|
|
8319
|
-
rotationPolicy?: {
|
|
8320
|
-
enabled: boolean;
|
|
8321
|
-
frequencyDays: number;
|
|
8322
|
-
retainOldVersions: number;
|
|
8323
|
-
autoRotate: boolean;
|
|
8324
|
-
} | undefined;
|
|
8325
|
-
};
|
|
8326
|
-
scope: "record" | "field" | "table" | "database";
|
|
8327
|
-
deterministicEncryption: boolean;
|
|
8328
|
-
searchableEncryption: boolean;
|
|
8329
|
-
} | undefined;
|
|
8330
6632
|
readonly columnName?: string | undefined;
|
|
8331
6633
|
readonly searchable?: boolean | undefined;
|
|
8332
6634
|
readonly unique?: boolean | undefined;
|
|
@@ -8335,7 +6637,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8335
6637
|
readonly scale?: number | undefined;
|
|
8336
6638
|
readonly reference?: string | undefined;
|
|
8337
6639
|
readonly referenceFilters?: string[] | undefined;
|
|
8338
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8339
6640
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8340
6641
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8341
6642
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8360,22 +6661,8 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8360
6661
|
relationshipField?: string | undefined;
|
|
8361
6662
|
} | undefined;
|
|
8362
6663
|
readonly language?: string | undefined;
|
|
8363
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8364
6664
|
readonly maxRating?: number | undefined;
|
|
8365
|
-
readonly allowHalf?: boolean | undefined;
|
|
8366
|
-
readonly displayMap?: boolean | undefined;
|
|
8367
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
8368
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
8369
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
8370
|
-
readonly allowAlpha?: boolean | undefined;
|
|
8371
|
-
readonly presetColors?: string[] | undefined;
|
|
8372
6665
|
readonly step?: number | undefined;
|
|
8373
|
-
readonly showValue?: boolean | undefined;
|
|
8374
|
-
readonly marks?: Record<string, string> | undefined;
|
|
8375
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
8376
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
8377
|
-
readonly displayValue?: boolean | undefined;
|
|
8378
|
-
readonly allowScanning?: boolean | undefined;
|
|
8379
6666
|
readonly currencyConfig?: {
|
|
8380
6667
|
precision: number;
|
|
8381
6668
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8429,29 +6716,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8429
6716
|
} | undefined;
|
|
8430
6717
|
maxVersions?: number | undefined;
|
|
8431
6718
|
} | undefined;
|
|
8432
|
-
readonly
|
|
8433
|
-
field: string;
|
|
8434
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
8435
|
-
preserveFormat: boolean;
|
|
8436
|
-
preserveLength: boolean;
|
|
8437
|
-
pattern?: string | undefined;
|
|
8438
|
-
roles?: string[] | undefined;
|
|
8439
|
-
exemptRoles?: string[] | undefined;
|
|
8440
|
-
} | undefined;
|
|
8441
|
-
readonly auditTrail?: boolean | undefined;
|
|
8442
|
-
readonly cached?: {
|
|
8443
|
-
enabled: boolean;
|
|
8444
|
-
ttl: number;
|
|
8445
|
-
invalidateOn: string[];
|
|
8446
|
-
} | undefined;
|
|
8447
|
-
readonly dataQuality?: {
|
|
8448
|
-
uniqueness: boolean;
|
|
8449
|
-
completeness: number;
|
|
8450
|
-
accuracy?: {
|
|
8451
|
-
source: string;
|
|
8452
|
-
threshold: number;
|
|
8453
|
-
} | undefined;
|
|
8454
|
-
} | undefined;
|
|
6719
|
+
readonly trackHistory?: boolean | undefined;
|
|
8455
6720
|
readonly visibleWhen?: {
|
|
8456
6721
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8457
6722
|
source?: string | undefined;
|
|
@@ -8490,7 +6755,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8490
6755
|
} | undefined;
|
|
8491
6756
|
readonly sortable?: boolean | undefined;
|
|
8492
6757
|
readonly inlineHelpText?: string | undefined;
|
|
8493
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8494
6758
|
readonly caseSensitive?: boolean | undefined;
|
|
8495
6759
|
readonly autonumberFormat?: string | undefined;
|
|
8496
6760
|
readonly index?: boolean | undefined;
|
|
@@ -8512,7 +6776,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8512
6776
|
readonly required?: boolean | undefined;
|
|
8513
6777
|
readonly multiple?: boolean | undefined;
|
|
8514
6778
|
readonly dependencies?: string[] | undefined;
|
|
8515
|
-
readonly theme?: string | undefined;
|
|
8516
6779
|
readonly externalId?: boolean | undefined;
|
|
8517
6780
|
readonly defaultValue?: unknown;
|
|
8518
6781
|
readonly group?: string | undefined;
|
|
@@ -8520,23 +6783,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8520
6783
|
readonly system?: boolean | undefined;
|
|
8521
6784
|
readonly min?: number | undefined;
|
|
8522
6785
|
readonly max?: number | undefined;
|
|
8523
|
-
readonly encryptionConfig?: {
|
|
8524
|
-
enabled: boolean;
|
|
8525
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8526
|
-
keyManagement: {
|
|
8527
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8528
|
-
keyId?: string | undefined;
|
|
8529
|
-
rotationPolicy?: {
|
|
8530
|
-
enabled: boolean;
|
|
8531
|
-
frequencyDays: number;
|
|
8532
|
-
retainOldVersions: number;
|
|
8533
|
-
autoRotate: boolean;
|
|
8534
|
-
} | undefined;
|
|
8535
|
-
};
|
|
8536
|
-
scope: "record" | "field" | "table" | "database";
|
|
8537
|
-
deterministicEncryption: boolean;
|
|
8538
|
-
searchableEncryption: boolean;
|
|
8539
|
-
} | undefined;
|
|
8540
6786
|
readonly columnName?: string | undefined;
|
|
8541
6787
|
readonly searchable?: boolean | undefined;
|
|
8542
6788
|
readonly unique?: boolean | undefined;
|
|
@@ -8545,7 +6791,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8545
6791
|
readonly scale?: number | undefined;
|
|
8546
6792
|
reference: string;
|
|
8547
6793
|
readonly referenceFilters?: string[] | undefined;
|
|
8548
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8549
6794
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8550
6795
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8551
6796
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8570,22 +6815,8 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8570
6815
|
relationshipField?: string | undefined;
|
|
8571
6816
|
} | undefined;
|
|
8572
6817
|
readonly language?: string | undefined;
|
|
8573
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8574
6818
|
readonly maxRating?: number | undefined;
|
|
8575
|
-
readonly allowHalf?: boolean | undefined;
|
|
8576
|
-
readonly displayMap?: boolean | undefined;
|
|
8577
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
8578
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
8579
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
8580
|
-
readonly allowAlpha?: boolean | undefined;
|
|
8581
|
-
readonly presetColors?: string[] | undefined;
|
|
8582
6819
|
readonly step?: number | undefined;
|
|
8583
|
-
readonly showValue?: boolean | undefined;
|
|
8584
|
-
readonly marks?: Record<string, string> | undefined;
|
|
8585
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
8586
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
8587
|
-
readonly displayValue?: boolean | undefined;
|
|
8588
|
-
readonly allowScanning?: boolean | undefined;
|
|
8589
6820
|
readonly currencyConfig?: {
|
|
8590
6821
|
precision: number;
|
|
8591
6822
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8639,29 +6870,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8639
6870
|
} | undefined;
|
|
8640
6871
|
maxVersions?: number | undefined;
|
|
8641
6872
|
} | undefined;
|
|
8642
|
-
readonly
|
|
8643
|
-
field: string;
|
|
8644
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
8645
|
-
preserveFormat: boolean;
|
|
8646
|
-
preserveLength: boolean;
|
|
8647
|
-
pattern?: string | undefined;
|
|
8648
|
-
roles?: string[] | undefined;
|
|
8649
|
-
exemptRoles?: string[] | undefined;
|
|
8650
|
-
} | undefined;
|
|
8651
|
-
readonly auditTrail?: boolean | undefined;
|
|
8652
|
-
readonly cached?: {
|
|
8653
|
-
enabled: boolean;
|
|
8654
|
-
ttl: number;
|
|
8655
|
-
invalidateOn: string[];
|
|
8656
|
-
} | undefined;
|
|
8657
|
-
readonly dataQuality?: {
|
|
8658
|
-
uniqueness: boolean;
|
|
8659
|
-
completeness: number;
|
|
8660
|
-
accuracy?: {
|
|
8661
|
-
source: string;
|
|
8662
|
-
threshold: number;
|
|
8663
|
-
} | undefined;
|
|
8664
|
-
} | undefined;
|
|
6873
|
+
readonly trackHistory?: boolean | undefined;
|
|
8665
6874
|
readonly visibleWhen?: {
|
|
8666
6875
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8667
6876
|
source?: string | undefined;
|
|
@@ -8700,7 +6909,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8700
6909
|
} | undefined;
|
|
8701
6910
|
readonly sortable?: boolean | undefined;
|
|
8702
6911
|
readonly inlineHelpText?: string | undefined;
|
|
8703
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8704
6912
|
readonly caseSensitive?: boolean | undefined;
|
|
8705
6913
|
readonly autonumberFormat?: string | undefined;
|
|
8706
6914
|
readonly index?: boolean | undefined;
|
|
@@ -8722,7 +6930,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8722
6930
|
readonly required?: boolean | undefined;
|
|
8723
6931
|
readonly multiple?: boolean | undefined;
|
|
8724
6932
|
readonly dependencies?: string[] | undefined;
|
|
8725
|
-
readonly theme?: string | undefined;
|
|
8726
6933
|
readonly externalId?: boolean | undefined;
|
|
8727
6934
|
readonly defaultValue?: unknown;
|
|
8728
6935
|
readonly group?: string | undefined;
|
|
@@ -8730,23 +6937,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8730
6937
|
readonly system?: boolean | undefined;
|
|
8731
6938
|
readonly min?: number | undefined;
|
|
8732
6939
|
readonly max?: number | undefined;
|
|
8733
|
-
readonly encryptionConfig?: {
|
|
8734
|
-
enabled: boolean;
|
|
8735
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8736
|
-
keyManagement: {
|
|
8737
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8738
|
-
keyId?: string | undefined;
|
|
8739
|
-
rotationPolicy?: {
|
|
8740
|
-
enabled: boolean;
|
|
8741
|
-
frequencyDays: number;
|
|
8742
|
-
retainOldVersions: number;
|
|
8743
|
-
autoRotate: boolean;
|
|
8744
|
-
} | undefined;
|
|
8745
|
-
};
|
|
8746
|
-
scope: "record" | "field" | "table" | "database";
|
|
8747
|
-
deterministicEncryption: boolean;
|
|
8748
|
-
searchableEncryption: boolean;
|
|
8749
|
-
} | undefined;
|
|
8750
6940
|
readonly columnName?: string | undefined;
|
|
8751
6941
|
readonly searchable?: boolean | undefined;
|
|
8752
6942
|
readonly unique?: boolean | undefined;
|
|
@@ -8755,7 +6945,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8755
6945
|
readonly scale?: number | undefined;
|
|
8756
6946
|
reference: string;
|
|
8757
6947
|
readonly referenceFilters?: string[] | undefined;
|
|
8758
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8759
6948
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8760
6949
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8761
6950
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8780,22 +6969,8 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8780
6969
|
relationshipField?: string | undefined;
|
|
8781
6970
|
} | undefined;
|
|
8782
6971
|
readonly language?: string | undefined;
|
|
8783
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8784
6972
|
readonly maxRating?: number | undefined;
|
|
8785
|
-
readonly allowHalf?: boolean | undefined;
|
|
8786
|
-
readonly displayMap?: boolean | undefined;
|
|
8787
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
8788
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
8789
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
8790
|
-
readonly allowAlpha?: boolean | undefined;
|
|
8791
|
-
readonly presetColors?: string[] | undefined;
|
|
8792
6973
|
readonly step?: number | undefined;
|
|
8793
|
-
readonly showValue?: boolean | undefined;
|
|
8794
|
-
readonly marks?: Record<string, string> | undefined;
|
|
8795
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
8796
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
8797
|
-
readonly displayValue?: boolean | undefined;
|
|
8798
|
-
readonly allowScanning?: boolean | undefined;
|
|
8799
6974
|
readonly currencyConfig?: {
|
|
8800
6975
|
precision: number;
|
|
8801
6976
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8849,29 +7024,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8849
7024
|
} | undefined;
|
|
8850
7025
|
maxVersions?: number | undefined;
|
|
8851
7026
|
} | undefined;
|
|
8852
|
-
readonly
|
|
8853
|
-
field: string;
|
|
8854
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
8855
|
-
preserveFormat: boolean;
|
|
8856
|
-
preserveLength: boolean;
|
|
8857
|
-
pattern?: string | undefined;
|
|
8858
|
-
roles?: string[] | undefined;
|
|
8859
|
-
exemptRoles?: string[] | undefined;
|
|
8860
|
-
} | undefined;
|
|
8861
|
-
readonly auditTrail?: boolean | undefined;
|
|
8862
|
-
readonly cached?: {
|
|
8863
|
-
enabled: boolean;
|
|
8864
|
-
ttl: number;
|
|
8865
|
-
invalidateOn: string[];
|
|
8866
|
-
} | undefined;
|
|
8867
|
-
readonly dataQuality?: {
|
|
8868
|
-
uniqueness: boolean;
|
|
8869
|
-
completeness: number;
|
|
8870
|
-
accuracy?: {
|
|
8871
|
-
source: string;
|
|
8872
|
-
threshold: number;
|
|
8873
|
-
} | undefined;
|
|
8874
|
-
} | undefined;
|
|
7027
|
+
readonly trackHistory?: boolean | undefined;
|
|
8875
7028
|
readonly visibleWhen?: {
|
|
8876
7029
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8877
7030
|
source?: string | undefined;
|
|
@@ -8910,7 +7063,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8910
7063
|
} | undefined;
|
|
8911
7064
|
readonly sortable?: boolean | undefined;
|
|
8912
7065
|
readonly inlineHelpText?: string | undefined;
|
|
8913
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8914
7066
|
readonly caseSensitive?: boolean | undefined;
|
|
8915
7067
|
readonly autonumberFormat?: string | undefined;
|
|
8916
7068
|
readonly index?: boolean | undefined;
|
|
@@ -8932,7 +7084,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8932
7084
|
readonly required?: boolean | undefined;
|
|
8933
7085
|
readonly multiple?: boolean | undefined;
|
|
8934
7086
|
readonly dependencies?: string[] | undefined;
|
|
8935
|
-
readonly theme?: string | undefined;
|
|
8936
7087
|
readonly externalId?: boolean | undefined;
|
|
8937
7088
|
readonly defaultValue?: unknown;
|
|
8938
7089
|
readonly group?: string | undefined;
|
|
@@ -8940,23 +7091,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8940
7091
|
readonly system?: boolean | undefined;
|
|
8941
7092
|
readonly min?: number | undefined;
|
|
8942
7093
|
readonly max?: number | undefined;
|
|
8943
|
-
readonly encryptionConfig?: {
|
|
8944
|
-
enabled: boolean;
|
|
8945
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8946
|
-
keyManagement: {
|
|
8947
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8948
|
-
keyId?: string | undefined;
|
|
8949
|
-
rotationPolicy?: {
|
|
8950
|
-
enabled: boolean;
|
|
8951
|
-
frequencyDays: number;
|
|
8952
|
-
retainOldVersions: number;
|
|
8953
|
-
autoRotate: boolean;
|
|
8954
|
-
} | undefined;
|
|
8955
|
-
};
|
|
8956
|
-
scope: "record" | "field" | "table" | "database";
|
|
8957
|
-
deterministicEncryption: boolean;
|
|
8958
|
-
searchableEncryption: boolean;
|
|
8959
|
-
} | undefined;
|
|
8960
7094
|
readonly columnName?: string | undefined;
|
|
8961
7095
|
readonly searchable?: boolean | undefined;
|
|
8962
7096
|
readonly unique?: boolean | undefined;
|
|
@@ -8965,7 +7099,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8965
7099
|
readonly scale?: number | undefined;
|
|
8966
7100
|
readonly reference?: string | undefined;
|
|
8967
7101
|
readonly referenceFilters?: string[] | undefined;
|
|
8968
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8969
7102
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8970
7103
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8971
7104
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8990,22 +7123,8 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8990
7123
|
relationshipField?: string | undefined;
|
|
8991
7124
|
} | undefined;
|
|
8992
7125
|
readonly language?: string | undefined;
|
|
8993
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8994
7126
|
readonly maxRating?: number | undefined;
|
|
8995
|
-
readonly allowHalf?: boolean | undefined;
|
|
8996
|
-
readonly displayMap?: boolean | undefined;
|
|
8997
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
8998
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
8999
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
9000
|
-
readonly allowAlpha?: boolean | undefined;
|
|
9001
|
-
readonly presetColors?: string[] | undefined;
|
|
9002
7127
|
readonly step?: number | undefined;
|
|
9003
|
-
readonly showValue?: boolean | undefined;
|
|
9004
|
-
readonly marks?: Record<string, string> | undefined;
|
|
9005
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
9006
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
9007
|
-
readonly displayValue?: boolean | undefined;
|
|
9008
|
-
readonly allowScanning?: boolean | undefined;
|
|
9009
7128
|
readonly currencyConfig?: {
|
|
9010
7129
|
precision: number;
|
|
9011
7130
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -9059,29 +7178,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
9059
7178
|
} | undefined;
|
|
9060
7179
|
maxVersions?: number | undefined;
|
|
9061
7180
|
} | undefined;
|
|
9062
|
-
readonly
|
|
9063
|
-
field: string;
|
|
9064
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
9065
|
-
preserveFormat: boolean;
|
|
9066
|
-
preserveLength: boolean;
|
|
9067
|
-
pattern?: string | undefined;
|
|
9068
|
-
roles?: string[] | undefined;
|
|
9069
|
-
exemptRoles?: string[] | undefined;
|
|
9070
|
-
} | undefined;
|
|
9071
|
-
readonly auditTrail?: boolean | undefined;
|
|
9072
|
-
readonly cached?: {
|
|
9073
|
-
enabled: boolean;
|
|
9074
|
-
ttl: number;
|
|
9075
|
-
invalidateOn: string[];
|
|
9076
|
-
} | undefined;
|
|
9077
|
-
readonly dataQuality?: {
|
|
9078
|
-
uniqueness: boolean;
|
|
9079
|
-
completeness: number;
|
|
9080
|
-
accuracy?: {
|
|
9081
|
-
source: string;
|
|
9082
|
-
threshold: number;
|
|
9083
|
-
} | undefined;
|
|
9084
|
-
} | undefined;
|
|
7181
|
+
readonly trackHistory?: boolean | undefined;
|
|
9085
7182
|
readonly visibleWhen?: {
|
|
9086
7183
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9087
7184
|
source?: string | undefined;
|
|
@@ -9120,7 +7217,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
9120
7217
|
} | undefined;
|
|
9121
7218
|
readonly sortable?: boolean | undefined;
|
|
9122
7219
|
readonly inlineHelpText?: string | undefined;
|
|
9123
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
9124
7220
|
readonly caseSensitive?: boolean | undefined;
|
|
9125
7221
|
readonly autonumberFormat?: string | undefined;
|
|
9126
7222
|
readonly index?: boolean | undefined;
|
|
@@ -9142,7 +7238,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
9142
7238
|
readonly required?: boolean | undefined;
|
|
9143
7239
|
readonly multiple?: boolean | undefined;
|
|
9144
7240
|
readonly dependencies?: string[] | undefined;
|
|
9145
|
-
readonly theme?: string | undefined;
|
|
9146
7241
|
readonly externalId?: boolean | undefined;
|
|
9147
7242
|
readonly defaultValue?: unknown;
|
|
9148
7243
|
readonly group?: string | undefined;
|
|
@@ -9150,23 +7245,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
9150
7245
|
readonly system?: boolean | undefined;
|
|
9151
7246
|
readonly min?: number | undefined;
|
|
9152
7247
|
readonly max?: number | undefined;
|
|
9153
|
-
readonly encryptionConfig?: {
|
|
9154
|
-
enabled: boolean;
|
|
9155
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
9156
|
-
keyManagement: {
|
|
9157
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
9158
|
-
keyId?: string | undefined;
|
|
9159
|
-
rotationPolicy?: {
|
|
9160
|
-
enabled: boolean;
|
|
9161
|
-
frequencyDays: number;
|
|
9162
|
-
retainOldVersions: number;
|
|
9163
|
-
autoRotate: boolean;
|
|
9164
|
-
} | undefined;
|
|
9165
|
-
};
|
|
9166
|
-
scope: "record" | "field" | "table" | "database";
|
|
9167
|
-
deterministicEncryption: boolean;
|
|
9168
|
-
searchableEncryption: boolean;
|
|
9169
|
-
} | undefined;
|
|
9170
7248
|
readonly columnName?: string | undefined;
|
|
9171
7249
|
readonly searchable?: boolean | undefined;
|
|
9172
7250
|
readonly unique?: boolean | undefined;
|
|
@@ -9175,7 +7253,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
9175
7253
|
readonly scale?: number | undefined;
|
|
9176
7254
|
readonly reference?: string | undefined;
|
|
9177
7255
|
readonly referenceFilters?: string[] | undefined;
|
|
9178
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
9179
7256
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
9180
7257
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
9181
7258
|
readonly inlineTitle?: string | undefined;
|
|
@@ -9200,22 +7277,8 @@ declare const SysApprovalApprover: Omit<{
|
|
|
9200
7277
|
relationshipField?: string | undefined;
|
|
9201
7278
|
} | undefined;
|
|
9202
7279
|
readonly language?: string | undefined;
|
|
9203
|
-
readonly lineNumbers?: boolean | undefined;
|
|
9204
7280
|
readonly maxRating?: number | undefined;
|
|
9205
|
-
readonly allowHalf?: boolean | undefined;
|
|
9206
|
-
readonly displayMap?: boolean | undefined;
|
|
9207
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
9208
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
9209
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
9210
|
-
readonly allowAlpha?: boolean | undefined;
|
|
9211
|
-
readonly presetColors?: string[] | undefined;
|
|
9212
7281
|
readonly step?: number | undefined;
|
|
9213
|
-
readonly showValue?: boolean | undefined;
|
|
9214
|
-
readonly marks?: Record<string, string> | undefined;
|
|
9215
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
9216
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
9217
|
-
readonly displayValue?: boolean | undefined;
|
|
9218
|
-
readonly allowScanning?: boolean | undefined;
|
|
9219
7282
|
readonly currencyConfig?: {
|
|
9220
7283
|
precision: number;
|
|
9221
7284
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -9269,29 +7332,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
9269
7332
|
} | undefined;
|
|
9270
7333
|
maxVersions?: number | undefined;
|
|
9271
7334
|
} | undefined;
|
|
9272
|
-
readonly
|
|
9273
|
-
field: string;
|
|
9274
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
9275
|
-
preserveFormat: boolean;
|
|
9276
|
-
preserveLength: boolean;
|
|
9277
|
-
pattern?: string | undefined;
|
|
9278
|
-
roles?: string[] | undefined;
|
|
9279
|
-
exemptRoles?: string[] | undefined;
|
|
9280
|
-
} | undefined;
|
|
9281
|
-
readonly auditTrail?: boolean | undefined;
|
|
9282
|
-
readonly cached?: {
|
|
9283
|
-
enabled: boolean;
|
|
9284
|
-
ttl: number;
|
|
9285
|
-
invalidateOn: string[];
|
|
9286
|
-
} | undefined;
|
|
9287
|
-
readonly dataQuality?: {
|
|
9288
|
-
uniqueness: boolean;
|
|
9289
|
-
completeness: number;
|
|
9290
|
-
accuracy?: {
|
|
9291
|
-
source: string;
|
|
9292
|
-
threshold: number;
|
|
9293
|
-
} | undefined;
|
|
9294
|
-
} | undefined;
|
|
7335
|
+
readonly trackHistory?: boolean | undefined;
|
|
9295
7336
|
readonly visibleWhen?: {
|
|
9296
7337
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9297
7338
|
source?: string | undefined;
|
|
@@ -9330,7 +7371,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
9330
7371
|
} | undefined;
|
|
9331
7372
|
readonly sortable?: boolean | undefined;
|
|
9332
7373
|
readonly inlineHelpText?: string | undefined;
|
|
9333
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
9334
7374
|
readonly caseSensitive?: boolean | undefined;
|
|
9335
7375
|
readonly autonumberFormat?: string | undefined;
|
|
9336
7376
|
readonly index?: boolean | undefined;
|