@objectstack/plugin-approvals 9.7.0 → 9.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +8 -8
- package/CHANGELOG.md +33 -0
- package/dist/index.d.mts +94 -2013
- package/dist/index.d.ts +94 -2013
- package/package.json +7 -7
package/dist/index.d.ts
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,28 +93,14 @@ 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";
|
|
118
101
|
defaultCurrency: string;
|
|
119
102
|
} | undefined;
|
|
103
|
+
dimensions?: number | undefined;
|
|
120
104
|
vectorConfig?: {
|
|
121
105
|
dimensions: number;
|
|
122
106
|
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
@@ -165,46 +149,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
165
149
|
} | undefined;
|
|
166
150
|
maxVersions?: number | undefined;
|
|
167
151
|
} | 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;
|
|
152
|
+
trackHistory?: boolean | undefined;
|
|
194
153
|
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
154
|
group?: string | undefined;
|
|
209
155
|
visibleWhen?: {
|
|
210
156
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -276,7 +222,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
276
222
|
} | undefined;
|
|
277
223
|
system?: boolean | undefined;
|
|
278
224
|
inlineHelpText?: string | undefined;
|
|
279
|
-
trackFeedHistory?: boolean | undefined;
|
|
280
225
|
caseSensitive?: boolean | undefined;
|
|
281
226
|
autonumberFormat?: string | undefined;
|
|
282
227
|
}>;
|
|
@@ -367,12 +312,13 @@ declare const SysApprovalRequest: Omit<{
|
|
|
367
312
|
key: string;
|
|
368
313
|
interval?: string | undefined;
|
|
369
314
|
} | undefined;
|
|
370
|
-
cdc?: {
|
|
371
|
-
enabled: boolean;
|
|
372
|
-
events: ("delete" | "update" | "insert")[];
|
|
373
|
-
destination: string;
|
|
374
|
-
} | undefined;
|
|
375
315
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
316
|
+
activityMilestones?: {
|
|
317
|
+
field: string;
|
|
318
|
+
value: string;
|
|
319
|
+
summary: string;
|
|
320
|
+
type?: string | undefined;
|
|
321
|
+
}[] | undefined;
|
|
376
322
|
displayNameField?: string | undefined;
|
|
377
323
|
recordName?: {
|
|
378
324
|
type: "text" | "autonumber";
|
|
@@ -683,7 +629,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
683
629
|
clone: boolean;
|
|
684
630
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
685
631
|
} | undefined;
|
|
686
|
-
recordTypes?: string[] | undefined;
|
|
687
632
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
688
633
|
publicSharing?: {
|
|
689
634
|
enabled: boolean;
|
|
@@ -740,6 +685,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
740
685
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
741
686
|
confirmText?: string | undefined;
|
|
742
687
|
successMessage?: string | undefined;
|
|
688
|
+
errorMessage?: string | undefined;
|
|
689
|
+
undoable?: boolean | undefined;
|
|
743
690
|
resultDialog?: {
|
|
744
691
|
title?: string | undefined;
|
|
745
692
|
description?: string | undefined;
|
|
@@ -926,7 +873,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
926
873
|
readonly required?: boolean | undefined;
|
|
927
874
|
readonly multiple?: boolean | undefined;
|
|
928
875
|
readonly dependencies?: string[] | undefined;
|
|
929
|
-
readonly theme?: string | undefined;
|
|
930
876
|
readonly externalId?: boolean | undefined;
|
|
931
877
|
readonly defaultValue?: unknown;
|
|
932
878
|
readonly group?: string | undefined;
|
|
@@ -934,23 +880,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
934
880
|
readonly system?: boolean | undefined;
|
|
935
881
|
readonly min?: number | undefined;
|
|
936
882
|
readonly max?: number | undefined;
|
|
937
|
-
readonly
|
|
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;
|
|
883
|
+
readonly dimensions?: number | undefined;
|
|
954
884
|
readonly columnName?: string | undefined;
|
|
955
885
|
readonly searchable?: boolean | undefined;
|
|
956
886
|
readonly unique?: boolean | undefined;
|
|
@@ -959,7 +889,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
959
889
|
readonly scale?: number | undefined;
|
|
960
890
|
readonly reference?: string | undefined;
|
|
961
891
|
readonly referenceFilters?: string[] | undefined;
|
|
962
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
963
892
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
964
893
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
965
894
|
readonly inlineTitle?: string | undefined;
|
|
@@ -984,22 +913,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
984
913
|
relationshipField?: string | undefined;
|
|
985
914
|
} | undefined;
|
|
986
915
|
readonly language?: string | undefined;
|
|
987
|
-
readonly lineNumbers?: boolean | undefined;
|
|
988
916
|
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
917
|
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
918
|
readonly currencyConfig?: {
|
|
1004
919
|
precision: number;
|
|
1005
920
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1053,29 +968,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1053
968
|
} | undefined;
|
|
1054
969
|
maxVersions?: number | undefined;
|
|
1055
970
|
} | 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;
|
|
971
|
+
readonly trackHistory?: boolean | undefined;
|
|
1079
972
|
readonly visibleWhen?: {
|
|
1080
973
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1081
974
|
source?: string | undefined;
|
|
@@ -1114,7 +1007,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1114
1007
|
} | undefined;
|
|
1115
1008
|
readonly sortable?: boolean | undefined;
|
|
1116
1009
|
readonly inlineHelpText?: string | undefined;
|
|
1117
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1118
1010
|
readonly caseSensitive?: boolean | undefined;
|
|
1119
1011
|
readonly autonumberFormat?: string | undefined;
|
|
1120
1012
|
readonly index?: boolean | undefined;
|
|
@@ -1136,7 +1028,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1136
1028
|
readonly required?: boolean | undefined;
|
|
1137
1029
|
readonly multiple?: boolean | undefined;
|
|
1138
1030
|
readonly dependencies?: string[] | undefined;
|
|
1139
|
-
readonly theme?: string | undefined;
|
|
1140
1031
|
readonly externalId?: boolean | undefined;
|
|
1141
1032
|
readonly defaultValue?: unknown;
|
|
1142
1033
|
readonly group?: string | undefined;
|
|
@@ -1144,23 +1035,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1144
1035
|
readonly system?: boolean | undefined;
|
|
1145
1036
|
readonly min?: number | undefined;
|
|
1146
1037
|
readonly max?: number | undefined;
|
|
1147
|
-
readonly
|
|
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;
|
|
1038
|
+
readonly dimensions?: number | undefined;
|
|
1164
1039
|
readonly columnName?: string | undefined;
|
|
1165
1040
|
readonly searchable?: boolean | undefined;
|
|
1166
1041
|
readonly unique?: boolean | undefined;
|
|
@@ -1169,7 +1044,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1169
1044
|
readonly scale?: number | undefined;
|
|
1170
1045
|
reference: string;
|
|
1171
1046
|
readonly referenceFilters?: string[] | undefined;
|
|
1172
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1173
1047
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1174
1048
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1175
1049
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1194,22 +1068,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1194
1068
|
relationshipField?: string | undefined;
|
|
1195
1069
|
} | undefined;
|
|
1196
1070
|
readonly language?: string | undefined;
|
|
1197
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1198
1071
|
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
1072
|
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
1073
|
readonly currencyConfig?: {
|
|
1214
1074
|
precision: number;
|
|
1215
1075
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1263,29 +1123,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1263
1123
|
} | undefined;
|
|
1264
1124
|
maxVersions?: number | undefined;
|
|
1265
1125
|
} | 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;
|
|
1126
|
+
readonly trackHistory?: boolean | undefined;
|
|
1289
1127
|
readonly visibleWhen?: {
|
|
1290
1128
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1291
1129
|
source?: string | undefined;
|
|
@@ -1324,7 +1162,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1324
1162
|
} | undefined;
|
|
1325
1163
|
readonly sortable?: boolean | undefined;
|
|
1326
1164
|
readonly inlineHelpText?: string | undefined;
|
|
1327
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1328
1165
|
readonly caseSensitive?: boolean | undefined;
|
|
1329
1166
|
readonly autonumberFormat?: string | undefined;
|
|
1330
1167
|
readonly index?: boolean | undefined;
|
|
@@ -1346,7 +1183,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1346
1183
|
readonly required?: boolean | undefined;
|
|
1347
1184
|
readonly multiple?: boolean | undefined;
|
|
1348
1185
|
readonly dependencies?: string[] | undefined;
|
|
1349
|
-
readonly theme?: string | undefined;
|
|
1350
1186
|
readonly externalId?: boolean | undefined;
|
|
1351
1187
|
readonly defaultValue?: unknown;
|
|
1352
1188
|
readonly group?: string | undefined;
|
|
@@ -1354,23 +1190,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1354
1190
|
readonly system?: boolean | undefined;
|
|
1355
1191
|
readonly min?: number | undefined;
|
|
1356
1192
|
readonly max?: number | undefined;
|
|
1357
|
-
readonly
|
|
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;
|
|
1193
|
+
readonly dimensions?: number | undefined;
|
|
1374
1194
|
readonly columnName?: string | undefined;
|
|
1375
1195
|
readonly searchable?: boolean | undefined;
|
|
1376
1196
|
readonly unique?: boolean | undefined;
|
|
@@ -1379,7 +1199,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1379
1199
|
readonly scale?: number | undefined;
|
|
1380
1200
|
readonly reference?: string | undefined;
|
|
1381
1201
|
readonly referenceFilters?: string[] | undefined;
|
|
1382
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1383
1202
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1384
1203
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1385
1204
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1404,22 +1223,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1404
1223
|
relationshipField?: string | undefined;
|
|
1405
1224
|
} | undefined;
|
|
1406
1225
|
readonly language?: string | undefined;
|
|
1407
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1408
1226
|
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
1227
|
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
1228
|
readonly currencyConfig?: {
|
|
1424
1229
|
precision: number;
|
|
1425
1230
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1473,29 +1278,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1473
1278
|
} | undefined;
|
|
1474
1279
|
maxVersions?: number | undefined;
|
|
1475
1280
|
} | 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;
|
|
1281
|
+
readonly trackHistory?: boolean | undefined;
|
|
1499
1282
|
readonly visibleWhen?: {
|
|
1500
1283
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1501
1284
|
source?: string | undefined;
|
|
@@ -1534,7 +1317,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1534
1317
|
} | undefined;
|
|
1535
1318
|
readonly sortable?: boolean | undefined;
|
|
1536
1319
|
readonly inlineHelpText?: string | undefined;
|
|
1537
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1538
1320
|
readonly caseSensitive?: boolean | undefined;
|
|
1539
1321
|
readonly autonumberFormat?: string | undefined;
|
|
1540
1322
|
readonly index?: boolean | undefined;
|
|
@@ -1556,7 +1338,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1556
1338
|
readonly required?: boolean | undefined;
|
|
1557
1339
|
readonly multiple?: boolean | undefined;
|
|
1558
1340
|
readonly dependencies?: string[] | undefined;
|
|
1559
|
-
readonly theme?: string | undefined;
|
|
1560
1341
|
readonly externalId?: boolean | undefined;
|
|
1561
1342
|
readonly defaultValue?: unknown;
|
|
1562
1343
|
readonly group?: string | undefined;
|
|
@@ -1564,23 +1345,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1564
1345
|
readonly system?: boolean | undefined;
|
|
1565
1346
|
readonly min?: number | undefined;
|
|
1566
1347
|
readonly max?: number | undefined;
|
|
1567
|
-
readonly
|
|
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;
|
|
1348
|
+
readonly dimensions?: number | undefined;
|
|
1584
1349
|
readonly columnName?: string | undefined;
|
|
1585
1350
|
readonly searchable?: boolean | undefined;
|
|
1586
1351
|
readonly unique?: boolean | undefined;
|
|
@@ -1589,7 +1354,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1589
1354
|
readonly scale?: number | undefined;
|
|
1590
1355
|
readonly reference?: string | undefined;
|
|
1591
1356
|
readonly referenceFilters?: string[] | undefined;
|
|
1592
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1593
1357
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1594
1358
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1595
1359
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1614,22 +1378,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1614
1378
|
relationshipField?: string | undefined;
|
|
1615
1379
|
} | undefined;
|
|
1616
1380
|
readonly language?: string | undefined;
|
|
1617
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1618
1381
|
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
1382
|
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
1383
|
readonly currencyConfig?: {
|
|
1634
1384
|
precision: number;
|
|
1635
1385
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1683,29 +1433,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1683
1433
|
} | undefined;
|
|
1684
1434
|
maxVersions?: number | undefined;
|
|
1685
1435
|
} | 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;
|
|
1436
|
+
readonly trackHistory?: boolean | undefined;
|
|
1709
1437
|
readonly visibleWhen?: {
|
|
1710
1438
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1711
1439
|
source?: string | undefined;
|
|
@@ -1744,7 +1472,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1744
1472
|
} | undefined;
|
|
1745
1473
|
readonly sortable?: boolean | undefined;
|
|
1746
1474
|
readonly inlineHelpText?: string | undefined;
|
|
1747
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1748
1475
|
readonly caseSensitive?: boolean | undefined;
|
|
1749
1476
|
readonly autonumberFormat?: string | undefined;
|
|
1750
1477
|
readonly index?: boolean | undefined;
|
|
@@ -1766,7 +1493,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1766
1493
|
readonly required?: boolean | undefined;
|
|
1767
1494
|
readonly multiple?: boolean | undefined;
|
|
1768
1495
|
readonly dependencies?: string[] | undefined;
|
|
1769
|
-
readonly theme?: string | undefined;
|
|
1770
1496
|
readonly externalId?: boolean | undefined;
|
|
1771
1497
|
readonly defaultValue?: unknown;
|
|
1772
1498
|
readonly group?: string | undefined;
|
|
@@ -1774,23 +1500,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1774
1500
|
readonly system?: boolean | undefined;
|
|
1775
1501
|
readonly min?: number | undefined;
|
|
1776
1502
|
readonly max?: number | undefined;
|
|
1777
|
-
readonly
|
|
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;
|
|
1503
|
+
readonly dimensions?: number | undefined;
|
|
1794
1504
|
readonly columnName?: string | undefined;
|
|
1795
1505
|
readonly searchable?: boolean | undefined;
|
|
1796
1506
|
readonly unique?: boolean | undefined;
|
|
@@ -1799,7 +1509,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1799
1509
|
readonly scale?: number | undefined;
|
|
1800
1510
|
readonly reference?: string | undefined;
|
|
1801
1511
|
readonly referenceFilters?: string[] | undefined;
|
|
1802
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1803
1512
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1804
1513
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1805
1514
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1824,22 +1533,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1824
1533
|
relationshipField?: string | undefined;
|
|
1825
1534
|
} | undefined;
|
|
1826
1535
|
readonly language?: string | undefined;
|
|
1827
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1828
1536
|
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
1537
|
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
1538
|
readonly currencyConfig?: {
|
|
1844
1539
|
precision: number;
|
|
1845
1540
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1893,29 +1588,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1893
1588
|
} | undefined;
|
|
1894
1589
|
maxVersions?: number | undefined;
|
|
1895
1590
|
} | 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;
|
|
1591
|
+
readonly trackHistory?: boolean | undefined;
|
|
1919
1592
|
readonly visibleWhen?: {
|
|
1920
1593
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1921
1594
|
source?: string | undefined;
|
|
@@ -1954,7 +1627,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1954
1627
|
} | undefined;
|
|
1955
1628
|
readonly sortable?: boolean | undefined;
|
|
1956
1629
|
readonly inlineHelpText?: string | undefined;
|
|
1957
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1958
1630
|
readonly caseSensitive?: boolean | undefined;
|
|
1959
1631
|
readonly autonumberFormat?: string | undefined;
|
|
1960
1632
|
readonly index?: boolean | undefined;
|
|
@@ -1976,7 +1648,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1976
1648
|
readonly required?: boolean | undefined;
|
|
1977
1649
|
readonly multiple?: boolean | undefined;
|
|
1978
1650
|
readonly dependencies?: string[] | undefined;
|
|
1979
|
-
readonly theme?: string | undefined;
|
|
1980
1651
|
readonly externalId?: boolean | undefined;
|
|
1981
1652
|
readonly defaultValue?: unknown;
|
|
1982
1653
|
readonly group?: string | undefined;
|
|
@@ -1984,23 +1655,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1984
1655
|
readonly system?: boolean | undefined;
|
|
1985
1656
|
readonly min?: number | undefined;
|
|
1986
1657
|
readonly max?: number | undefined;
|
|
1987
|
-
readonly
|
|
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;
|
|
1658
|
+
readonly dimensions?: number | undefined;
|
|
2004
1659
|
readonly columnName?: string | undefined;
|
|
2005
1660
|
readonly searchable?: boolean | undefined;
|
|
2006
1661
|
readonly unique?: boolean | undefined;
|
|
@@ -2009,7 +1664,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2009
1664
|
readonly scale?: number | undefined;
|
|
2010
1665
|
reference: string;
|
|
2011
1666
|
readonly referenceFilters?: string[] | undefined;
|
|
2012
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2013
1667
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2014
1668
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2015
1669
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2034,22 +1688,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2034
1688
|
relationshipField?: string | undefined;
|
|
2035
1689
|
} | undefined;
|
|
2036
1690
|
readonly language?: string | undefined;
|
|
2037
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2038
1691
|
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
1692
|
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
1693
|
readonly currencyConfig?: {
|
|
2054
1694
|
precision: number;
|
|
2055
1695
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2103,29 +1743,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2103
1743
|
} | undefined;
|
|
2104
1744
|
maxVersions?: number | undefined;
|
|
2105
1745
|
} | 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;
|
|
1746
|
+
readonly trackHistory?: boolean | undefined;
|
|
2129
1747
|
readonly visibleWhen?: {
|
|
2130
1748
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2131
1749
|
source?: string | undefined;
|
|
@@ -2164,7 +1782,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2164
1782
|
} | undefined;
|
|
2165
1783
|
readonly sortable?: boolean | undefined;
|
|
2166
1784
|
readonly inlineHelpText?: string | undefined;
|
|
2167
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2168
1785
|
readonly caseSensitive?: boolean | undefined;
|
|
2169
1786
|
readonly autonumberFormat?: string | undefined;
|
|
2170
1787
|
readonly index?: boolean | undefined;
|
|
@@ -2186,7 +1803,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2186
1803
|
readonly required?: boolean | undefined;
|
|
2187
1804
|
readonly multiple?: boolean | undefined;
|
|
2188
1805
|
readonly dependencies?: string[] | undefined;
|
|
2189
|
-
readonly theme?: string | undefined;
|
|
2190
1806
|
readonly externalId?: boolean | undefined;
|
|
2191
1807
|
readonly defaultValue?: unknown;
|
|
2192
1808
|
readonly group?: string | undefined;
|
|
@@ -2194,23 +1810,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2194
1810
|
readonly system?: boolean | undefined;
|
|
2195
1811
|
readonly min?: number | undefined;
|
|
2196
1812
|
readonly max?: number | undefined;
|
|
2197
|
-
readonly
|
|
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;
|
|
1813
|
+
readonly dimensions?: number | undefined;
|
|
2214
1814
|
readonly columnName?: string | undefined;
|
|
2215
1815
|
readonly searchable?: boolean | undefined;
|
|
2216
1816
|
readonly unique?: boolean | undefined;
|
|
@@ -2219,7 +1819,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2219
1819
|
readonly scale?: number | undefined;
|
|
2220
1820
|
readonly reference?: string | undefined;
|
|
2221
1821
|
readonly referenceFilters?: string[] | undefined;
|
|
2222
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2223
1822
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2224
1823
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2225
1824
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2244,22 +1843,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2244
1843
|
relationshipField?: string | undefined;
|
|
2245
1844
|
} | undefined;
|
|
2246
1845
|
readonly language?: string | undefined;
|
|
2247
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2248
1846
|
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
1847
|
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
1848
|
readonly currencyConfig?: {
|
|
2264
1849
|
precision: number;
|
|
2265
1850
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2313,29 +1898,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2313
1898
|
} | undefined;
|
|
2314
1899
|
maxVersions?: number | undefined;
|
|
2315
1900
|
} | 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;
|
|
1901
|
+
readonly trackHistory?: boolean | undefined;
|
|
2339
1902
|
readonly visibleWhen?: {
|
|
2340
1903
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2341
1904
|
source?: string | undefined;
|
|
@@ -2374,7 +1937,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2374
1937
|
} | undefined;
|
|
2375
1938
|
readonly sortable?: boolean | undefined;
|
|
2376
1939
|
readonly inlineHelpText?: string | undefined;
|
|
2377
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2378
1940
|
readonly caseSensitive?: boolean | undefined;
|
|
2379
1941
|
readonly autonumberFormat?: string | undefined;
|
|
2380
1942
|
readonly index?: boolean | undefined;
|
|
@@ -2396,7 +1958,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2396
1958
|
readonly required?: boolean | undefined;
|
|
2397
1959
|
readonly multiple?: boolean | undefined;
|
|
2398
1960
|
readonly dependencies?: string[] | undefined;
|
|
2399
|
-
readonly theme?: string | undefined;
|
|
2400
1961
|
readonly externalId?: boolean | undefined;
|
|
2401
1962
|
readonly defaultValue?: unknown;
|
|
2402
1963
|
readonly group?: string | undefined;
|
|
@@ -2404,23 +1965,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2404
1965
|
readonly system?: boolean | undefined;
|
|
2405
1966
|
readonly min?: number | undefined;
|
|
2406
1967
|
readonly max?: number | undefined;
|
|
2407
|
-
readonly
|
|
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;
|
|
1968
|
+
readonly dimensions?: number | undefined;
|
|
2424
1969
|
readonly columnName?: string | undefined;
|
|
2425
1970
|
readonly searchable?: boolean | undefined;
|
|
2426
1971
|
readonly unique?: boolean | undefined;
|
|
@@ -2429,7 +1974,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2429
1974
|
readonly scale?: number | undefined;
|
|
2430
1975
|
readonly reference?: string | undefined;
|
|
2431
1976
|
readonly referenceFilters?: string[] | undefined;
|
|
2432
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2433
1977
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2434
1978
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2435
1979
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2454,22 +1998,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2454
1998
|
relationshipField?: string | undefined;
|
|
2455
1999
|
} | undefined;
|
|
2456
2000
|
readonly language?: string | undefined;
|
|
2457
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2458
2001
|
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
2002
|
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
2003
|
readonly currencyConfig?: {
|
|
2474
2004
|
precision: number;
|
|
2475
2005
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2523,29 +2053,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2523
2053
|
} | undefined;
|
|
2524
2054
|
maxVersions?: number | undefined;
|
|
2525
2055
|
} | 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;
|
|
2056
|
+
readonly trackHistory?: boolean | undefined;
|
|
2549
2057
|
readonly visibleWhen?: {
|
|
2550
2058
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2551
2059
|
source?: string | undefined;
|
|
@@ -2584,7 +2092,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2584
2092
|
} | undefined;
|
|
2585
2093
|
readonly sortable?: boolean | undefined;
|
|
2586
2094
|
readonly inlineHelpText?: string | undefined;
|
|
2587
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2588
2095
|
readonly caseSensitive?: boolean | undefined;
|
|
2589
2096
|
readonly autonumberFormat?: string | undefined;
|
|
2590
2097
|
readonly index?: boolean | undefined;
|
|
@@ -2606,7 +2113,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2606
2113
|
readonly required?: boolean | undefined;
|
|
2607
2114
|
readonly multiple?: boolean | undefined;
|
|
2608
2115
|
readonly dependencies?: string[] | undefined;
|
|
2609
|
-
readonly theme?: string | undefined;
|
|
2610
2116
|
readonly externalId?: boolean | undefined;
|
|
2611
2117
|
readonly defaultValue?: unknown;
|
|
2612
2118
|
readonly group?: string | undefined;
|
|
@@ -2614,23 +2120,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2614
2120
|
readonly system?: boolean | undefined;
|
|
2615
2121
|
readonly min?: number | undefined;
|
|
2616
2122
|
readonly max?: number | undefined;
|
|
2617
|
-
readonly
|
|
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;
|
|
2123
|
+
readonly dimensions?: number | undefined;
|
|
2634
2124
|
readonly columnName?: string | undefined;
|
|
2635
2125
|
readonly searchable?: boolean | undefined;
|
|
2636
2126
|
readonly unique?: boolean | undefined;
|
|
@@ -2639,7 +2129,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2639
2129
|
readonly scale?: number | undefined;
|
|
2640
2130
|
readonly reference?: string | undefined;
|
|
2641
2131
|
readonly referenceFilters?: string[] | undefined;
|
|
2642
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2643
2132
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2644
2133
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2645
2134
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2664,22 +2153,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2664
2153
|
relationshipField?: string | undefined;
|
|
2665
2154
|
} | undefined;
|
|
2666
2155
|
readonly language?: string | undefined;
|
|
2667
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2668
2156
|
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
2157
|
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
2158
|
readonly currencyConfig?: {
|
|
2684
2159
|
precision: number;
|
|
2685
2160
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2733,29 +2208,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2733
2208
|
} | undefined;
|
|
2734
2209
|
maxVersions?: number | undefined;
|
|
2735
2210
|
} | 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;
|
|
2211
|
+
readonly trackHistory?: boolean | undefined;
|
|
2759
2212
|
readonly visibleWhen?: {
|
|
2760
2213
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2761
2214
|
source?: string | undefined;
|
|
@@ -2794,7 +2247,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2794
2247
|
} | undefined;
|
|
2795
2248
|
readonly sortable?: boolean | undefined;
|
|
2796
2249
|
readonly inlineHelpText?: string | undefined;
|
|
2797
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2798
2250
|
readonly caseSensitive?: boolean | undefined;
|
|
2799
2251
|
readonly autonumberFormat?: string | undefined;
|
|
2800
2252
|
readonly index?: boolean | undefined;
|
|
@@ -2816,7 +2268,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2816
2268
|
readonly required?: boolean | undefined;
|
|
2817
2269
|
readonly multiple?: boolean | undefined;
|
|
2818
2270
|
readonly dependencies?: string[] | undefined;
|
|
2819
|
-
readonly theme?: string | undefined;
|
|
2820
2271
|
readonly externalId?: boolean | undefined;
|
|
2821
2272
|
readonly defaultValue?: unknown;
|
|
2822
2273
|
readonly group?: string | undefined;
|
|
@@ -2824,23 +2275,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2824
2275
|
readonly system?: boolean | undefined;
|
|
2825
2276
|
readonly min?: number | undefined;
|
|
2826
2277
|
readonly max?: number | undefined;
|
|
2827
|
-
readonly
|
|
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;
|
|
2278
|
+
readonly dimensions?: number | undefined;
|
|
2844
2279
|
readonly columnName?: string | undefined;
|
|
2845
2280
|
readonly searchable?: boolean | undefined;
|
|
2846
2281
|
readonly unique?: boolean | undefined;
|
|
@@ -2849,7 +2284,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2849
2284
|
readonly scale?: number | undefined;
|
|
2850
2285
|
readonly reference?: string | undefined;
|
|
2851
2286
|
readonly referenceFilters?: string[] | undefined;
|
|
2852
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2853
2287
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2854
2288
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2855
2289
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2874,22 +2308,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2874
2308
|
relationshipField?: string | undefined;
|
|
2875
2309
|
} | undefined;
|
|
2876
2310
|
readonly language?: string | undefined;
|
|
2877
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2878
2311
|
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
2312
|
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
2313
|
readonly currencyConfig?: {
|
|
2894
2314
|
precision: number;
|
|
2895
2315
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2943,29 +2363,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2943
2363
|
} | undefined;
|
|
2944
2364
|
maxVersions?: number | undefined;
|
|
2945
2365
|
} | 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;
|
|
2366
|
+
readonly trackHistory?: boolean | undefined;
|
|
2969
2367
|
readonly visibleWhen?: {
|
|
2970
2368
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2971
2369
|
source?: string | undefined;
|
|
@@ -3004,7 +2402,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3004
2402
|
} | undefined;
|
|
3005
2403
|
readonly sortable?: boolean | undefined;
|
|
3006
2404
|
readonly inlineHelpText?: string | undefined;
|
|
3007
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3008
2405
|
readonly caseSensitive?: boolean | undefined;
|
|
3009
2406
|
readonly autonumberFormat?: string | undefined;
|
|
3010
2407
|
readonly index?: boolean | undefined;
|
|
@@ -3026,7 +2423,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3026
2423
|
readonly required?: boolean | undefined;
|
|
3027
2424
|
readonly multiple?: boolean | undefined;
|
|
3028
2425
|
readonly dependencies?: string[] | undefined;
|
|
3029
|
-
readonly theme?: string | undefined;
|
|
3030
2426
|
readonly externalId?: boolean | undefined;
|
|
3031
2427
|
readonly defaultValue?: unknown;
|
|
3032
2428
|
readonly group?: string | undefined;
|
|
@@ -3034,23 +2430,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3034
2430
|
readonly system?: boolean | undefined;
|
|
3035
2431
|
readonly min?: number | undefined;
|
|
3036
2432
|
readonly max?: number | undefined;
|
|
3037
|
-
readonly
|
|
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;
|
|
2433
|
+
readonly dimensions?: number | undefined;
|
|
3054
2434
|
readonly columnName?: string | undefined;
|
|
3055
2435
|
readonly searchable?: boolean | undefined;
|
|
3056
2436
|
readonly unique?: boolean | undefined;
|
|
@@ -3059,7 +2439,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3059
2439
|
readonly scale?: number | undefined;
|
|
3060
2440
|
readonly reference?: string | undefined;
|
|
3061
2441
|
readonly referenceFilters?: string[] | undefined;
|
|
3062
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3063
2442
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3064
2443
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3065
2444
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3084,22 +2463,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3084
2463
|
relationshipField?: string | undefined;
|
|
3085
2464
|
} | undefined;
|
|
3086
2465
|
readonly language?: string | undefined;
|
|
3087
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3088
2466
|
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
2467
|
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
2468
|
readonly currencyConfig?: {
|
|
3104
2469
|
precision: number;
|
|
3105
2470
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3153,29 +2518,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3153
2518
|
} | undefined;
|
|
3154
2519
|
maxVersions?: number | undefined;
|
|
3155
2520
|
} | 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;
|
|
2521
|
+
readonly trackHistory?: boolean | undefined;
|
|
3179
2522
|
readonly visibleWhen?: {
|
|
3180
2523
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3181
2524
|
source?: string | undefined;
|
|
@@ -3214,7 +2557,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3214
2557
|
} | undefined;
|
|
3215
2558
|
readonly sortable?: boolean | undefined;
|
|
3216
2559
|
readonly inlineHelpText?: string | undefined;
|
|
3217
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3218
2560
|
readonly caseSensitive?: boolean | undefined;
|
|
3219
2561
|
readonly autonumberFormat?: string | undefined;
|
|
3220
2562
|
readonly index?: boolean | undefined;
|
|
@@ -3236,7 +2578,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3236
2578
|
readonly required?: boolean | undefined;
|
|
3237
2579
|
readonly multiple?: boolean | undefined;
|
|
3238
2580
|
readonly dependencies?: string[] | undefined;
|
|
3239
|
-
readonly theme?: string | undefined;
|
|
3240
2581
|
readonly externalId?: boolean | undefined;
|
|
3241
2582
|
readonly defaultValue?: unknown;
|
|
3242
2583
|
readonly group?: string | undefined;
|
|
@@ -3244,23 +2585,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3244
2585
|
readonly system?: boolean | undefined;
|
|
3245
2586
|
readonly min?: number | undefined;
|
|
3246
2587
|
readonly max?: number | undefined;
|
|
3247
|
-
readonly
|
|
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;
|
|
2588
|
+
readonly dimensions?: number | undefined;
|
|
3264
2589
|
readonly columnName?: string | undefined;
|
|
3265
2590
|
readonly searchable?: boolean | undefined;
|
|
3266
2591
|
readonly unique?: boolean | undefined;
|
|
@@ -3269,7 +2594,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3269
2594
|
readonly scale?: number | undefined;
|
|
3270
2595
|
readonly reference?: string | undefined;
|
|
3271
2596
|
readonly referenceFilters?: string[] | undefined;
|
|
3272
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3273
2597
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3274
2598
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3275
2599
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3294,22 +2618,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3294
2618
|
relationshipField?: string | undefined;
|
|
3295
2619
|
} | undefined;
|
|
3296
2620
|
readonly language?: string | undefined;
|
|
3297
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3298
2621
|
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
2622
|
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
2623
|
readonly currencyConfig?: {
|
|
3314
2624
|
precision: number;
|
|
3315
2625
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3363,29 +2673,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3363
2673
|
} | undefined;
|
|
3364
2674
|
maxVersions?: number | undefined;
|
|
3365
2675
|
} | 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;
|
|
2676
|
+
readonly trackHistory?: boolean | undefined;
|
|
3389
2677
|
readonly visibleWhen?: {
|
|
3390
2678
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3391
2679
|
source?: string | undefined;
|
|
@@ -3424,7 +2712,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3424
2712
|
} | undefined;
|
|
3425
2713
|
readonly sortable?: boolean | undefined;
|
|
3426
2714
|
readonly inlineHelpText?: string | undefined;
|
|
3427
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3428
2715
|
readonly caseSensitive?: boolean | undefined;
|
|
3429
2716
|
readonly autonumberFormat?: string | undefined;
|
|
3430
2717
|
readonly index?: boolean | undefined;
|
|
@@ -3446,7 +2733,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3446
2733
|
readonly required?: boolean | undefined;
|
|
3447
2734
|
readonly multiple?: boolean | undefined;
|
|
3448
2735
|
readonly dependencies?: string[] | undefined;
|
|
3449
|
-
readonly theme?: string | undefined;
|
|
3450
2736
|
readonly externalId?: boolean | undefined;
|
|
3451
2737
|
readonly defaultValue?: unknown;
|
|
3452
2738
|
readonly group?: string | undefined;
|
|
@@ -3454,23 +2740,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3454
2740
|
readonly system?: boolean | undefined;
|
|
3455
2741
|
readonly min?: number | undefined;
|
|
3456
2742
|
readonly max?: number | undefined;
|
|
3457
|
-
readonly
|
|
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;
|
|
2743
|
+
readonly dimensions?: number | undefined;
|
|
3474
2744
|
readonly columnName?: string | undefined;
|
|
3475
2745
|
readonly searchable?: boolean | undefined;
|
|
3476
2746
|
readonly unique?: boolean | undefined;
|
|
@@ -3479,7 +2749,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3479
2749
|
readonly scale?: number | undefined;
|
|
3480
2750
|
readonly reference?: string | undefined;
|
|
3481
2751
|
readonly referenceFilters?: string[] | undefined;
|
|
3482
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3483
2752
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3484
2753
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3485
2754
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3504,22 +2773,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3504
2773
|
relationshipField?: string | undefined;
|
|
3505
2774
|
} | undefined;
|
|
3506
2775
|
readonly language?: string | undefined;
|
|
3507
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3508
2776
|
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
2777
|
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
2778
|
readonly currencyConfig?: {
|
|
3524
2779
|
precision: number;
|
|
3525
2780
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3573,29 +2828,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3573
2828
|
} | undefined;
|
|
3574
2829
|
maxVersions?: number | undefined;
|
|
3575
2830
|
} | 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;
|
|
2831
|
+
readonly trackHistory?: boolean | undefined;
|
|
3599
2832
|
readonly visibleWhen?: {
|
|
3600
2833
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3601
2834
|
source?: string | undefined;
|
|
@@ -3634,7 +2867,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3634
2867
|
} | undefined;
|
|
3635
2868
|
readonly sortable?: boolean | undefined;
|
|
3636
2869
|
readonly inlineHelpText?: string | undefined;
|
|
3637
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3638
2870
|
readonly caseSensitive?: boolean | undefined;
|
|
3639
2871
|
readonly autonumberFormat?: string | undefined;
|
|
3640
2872
|
readonly index?: boolean | undefined;
|
|
@@ -3656,7 +2888,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3656
2888
|
readonly required?: boolean | undefined;
|
|
3657
2889
|
readonly multiple?: boolean | undefined;
|
|
3658
2890
|
readonly dependencies?: string[] | undefined;
|
|
3659
|
-
readonly theme?: string | undefined;
|
|
3660
2891
|
readonly externalId?: boolean | undefined;
|
|
3661
2892
|
readonly defaultValue?: unknown;
|
|
3662
2893
|
readonly group?: string | undefined;
|
|
@@ -3664,23 +2895,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3664
2895
|
readonly system?: boolean | undefined;
|
|
3665
2896
|
readonly min?: number | undefined;
|
|
3666
2897
|
readonly max?: number | undefined;
|
|
3667
|
-
readonly
|
|
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;
|
|
2898
|
+
readonly dimensions?: number | undefined;
|
|
3684
2899
|
readonly columnName?: string | undefined;
|
|
3685
2900
|
readonly searchable?: boolean | undefined;
|
|
3686
2901
|
readonly unique?: boolean | undefined;
|
|
@@ -3689,7 +2904,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3689
2904
|
readonly scale?: number | undefined;
|
|
3690
2905
|
readonly reference?: string | undefined;
|
|
3691
2906
|
readonly referenceFilters?: string[] | undefined;
|
|
3692
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3693
2907
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3694
2908
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3695
2909
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3714,22 +2928,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3714
2928
|
relationshipField?: string | undefined;
|
|
3715
2929
|
} | undefined;
|
|
3716
2930
|
readonly language?: string | undefined;
|
|
3717
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3718
2931
|
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
2932
|
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
2933
|
readonly currencyConfig?: {
|
|
3734
2934
|
precision: number;
|
|
3735
2935
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3783,29 +2983,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3783
2983
|
} | undefined;
|
|
3784
2984
|
maxVersions?: number | undefined;
|
|
3785
2985
|
} | 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;
|
|
2986
|
+
readonly trackHistory?: boolean | undefined;
|
|
3809
2987
|
readonly visibleWhen?: {
|
|
3810
2988
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3811
2989
|
source?: string | undefined;
|
|
@@ -3844,7 +3022,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3844
3022
|
} | undefined;
|
|
3845
3023
|
readonly sortable?: boolean | undefined;
|
|
3846
3024
|
readonly inlineHelpText?: string | undefined;
|
|
3847
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3848
3025
|
readonly caseSensitive?: boolean | undefined;
|
|
3849
3026
|
readonly autonumberFormat?: string | undefined;
|
|
3850
3027
|
readonly index?: boolean | undefined;
|
|
@@ -3866,7 +3043,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3866
3043
|
readonly required?: boolean | undefined;
|
|
3867
3044
|
readonly multiple?: boolean | undefined;
|
|
3868
3045
|
readonly dependencies?: string[] | undefined;
|
|
3869
|
-
readonly theme?: string | undefined;
|
|
3870
3046
|
readonly externalId?: boolean | undefined;
|
|
3871
3047
|
readonly defaultValue?: unknown;
|
|
3872
3048
|
readonly group?: string | undefined;
|
|
@@ -3874,23 +3050,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3874
3050
|
readonly system?: boolean | undefined;
|
|
3875
3051
|
readonly min?: number | undefined;
|
|
3876
3052
|
readonly max?: number | undefined;
|
|
3877
|
-
readonly
|
|
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;
|
|
3053
|
+
readonly dimensions?: number | undefined;
|
|
3894
3054
|
readonly columnName?: string | undefined;
|
|
3895
3055
|
readonly searchable?: boolean | undefined;
|
|
3896
3056
|
readonly unique?: boolean | undefined;
|
|
@@ -3899,7 +3059,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3899
3059
|
readonly scale?: number | undefined;
|
|
3900
3060
|
readonly reference?: string | undefined;
|
|
3901
3061
|
readonly referenceFilters?: string[] | undefined;
|
|
3902
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3903
3062
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3904
3063
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3905
3064
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3924,22 +3083,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3924
3083
|
relationshipField?: string | undefined;
|
|
3925
3084
|
} | undefined;
|
|
3926
3085
|
readonly language?: string | undefined;
|
|
3927
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3928
3086
|
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
3087
|
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
3088
|
readonly currencyConfig?: {
|
|
3944
3089
|
precision: number;
|
|
3945
3090
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3993,29 +3138,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3993
3138
|
} | undefined;
|
|
3994
3139
|
maxVersions?: number | undefined;
|
|
3995
3140
|
} | 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;
|
|
3141
|
+
readonly trackHistory?: boolean | undefined;
|
|
4019
3142
|
readonly visibleWhen?: {
|
|
4020
3143
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4021
3144
|
source?: string | undefined;
|
|
@@ -4054,7 +3177,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4054
3177
|
} | undefined;
|
|
4055
3178
|
readonly sortable?: boolean | undefined;
|
|
4056
3179
|
readonly inlineHelpText?: string | undefined;
|
|
4057
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4058
3180
|
readonly caseSensitive?: boolean | undefined;
|
|
4059
3181
|
readonly autonumberFormat?: string | undefined;
|
|
4060
3182
|
readonly index?: boolean | undefined;
|
|
@@ -4076,7 +3198,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4076
3198
|
readonly required?: boolean | undefined;
|
|
4077
3199
|
readonly multiple?: boolean | undefined;
|
|
4078
3200
|
readonly dependencies?: string[] | undefined;
|
|
4079
|
-
readonly theme?: string | undefined;
|
|
4080
3201
|
readonly externalId?: boolean | undefined;
|
|
4081
3202
|
readonly defaultValue?: unknown;
|
|
4082
3203
|
readonly group?: string | undefined;
|
|
@@ -4084,23 +3205,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4084
3205
|
readonly system?: boolean | undefined;
|
|
4085
3206
|
readonly min?: number | undefined;
|
|
4086
3207
|
readonly max?: number | undefined;
|
|
4087
|
-
readonly
|
|
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;
|
|
3208
|
+
readonly dimensions?: number | undefined;
|
|
4104
3209
|
readonly columnName?: string | undefined;
|
|
4105
3210
|
readonly searchable?: boolean | undefined;
|
|
4106
3211
|
readonly unique?: boolean | undefined;
|
|
@@ -4109,7 +3214,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4109
3214
|
readonly scale?: number | undefined;
|
|
4110
3215
|
readonly reference?: string | undefined;
|
|
4111
3216
|
readonly referenceFilters?: string[] | undefined;
|
|
4112
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4113
3217
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4114
3218
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4115
3219
|
readonly inlineTitle?: string | undefined;
|
|
@@ -4134,22 +3238,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4134
3238
|
relationshipField?: string | undefined;
|
|
4135
3239
|
} | undefined;
|
|
4136
3240
|
readonly language?: string | undefined;
|
|
4137
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4138
3241
|
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
3242
|
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
3243
|
readonly currencyConfig?: {
|
|
4154
3244
|
precision: number;
|
|
4155
3245
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -4203,29 +3293,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4203
3293
|
} | undefined;
|
|
4204
3294
|
maxVersions?: number | undefined;
|
|
4205
3295
|
} | 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;
|
|
3296
|
+
readonly trackHistory?: boolean | undefined;
|
|
4229
3297
|
readonly visibleWhen?: {
|
|
4230
3298
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4231
3299
|
source?: string | undefined;
|
|
@@ -4264,7 +3332,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4264
3332
|
} | undefined;
|
|
4265
3333
|
readonly sortable?: boolean | undefined;
|
|
4266
3334
|
readonly inlineHelpText?: string | undefined;
|
|
4267
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4268
3335
|
readonly caseSensitive?: boolean | undefined;
|
|
4269
3336
|
readonly autonumberFormat?: string | undefined;
|
|
4270
3337
|
readonly index?: boolean | undefined;
|
|
@@ -4286,7 +3353,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4286
3353
|
readonly required?: boolean | undefined;
|
|
4287
3354
|
readonly multiple?: boolean | undefined;
|
|
4288
3355
|
readonly dependencies?: string[] | undefined;
|
|
4289
|
-
readonly theme?: string | undefined;
|
|
4290
3356
|
readonly externalId?: boolean | undefined;
|
|
4291
3357
|
readonly defaultValue?: unknown;
|
|
4292
3358
|
readonly group?: string | undefined;
|
|
@@ -4294,23 +3360,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4294
3360
|
readonly system?: boolean | undefined;
|
|
4295
3361
|
readonly min?: number | undefined;
|
|
4296
3362
|
readonly max?: number | undefined;
|
|
4297
|
-
readonly
|
|
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;
|
|
3363
|
+
readonly dimensions?: number | undefined;
|
|
4314
3364
|
readonly columnName?: string | undefined;
|
|
4315
3365
|
readonly searchable?: boolean | undefined;
|
|
4316
3366
|
readonly unique?: boolean | undefined;
|
|
@@ -4319,7 +3369,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4319
3369
|
readonly scale?: number | undefined;
|
|
4320
3370
|
readonly reference?: string | undefined;
|
|
4321
3371
|
readonly referenceFilters?: string[] | undefined;
|
|
4322
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4323
3372
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4324
3373
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4325
3374
|
readonly inlineTitle?: string | undefined;
|
|
@@ -4344,22 +3393,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4344
3393
|
relationshipField?: string | undefined;
|
|
4345
3394
|
} | undefined;
|
|
4346
3395
|
readonly language?: string | undefined;
|
|
4347
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4348
3396
|
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
3397
|
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
3398
|
readonly currencyConfig?: {
|
|
4364
3399
|
precision: number;
|
|
4365
3400
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -4413,29 +3448,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4413
3448
|
} | undefined;
|
|
4414
3449
|
maxVersions?: number | undefined;
|
|
4415
3450
|
} | 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;
|
|
3451
|
+
readonly trackHistory?: boolean | undefined;
|
|
4439
3452
|
readonly visibleWhen?: {
|
|
4440
3453
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4441
3454
|
source?: string | undefined;
|
|
@@ -4474,7 +3487,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4474
3487
|
} | undefined;
|
|
4475
3488
|
readonly sortable?: boolean | undefined;
|
|
4476
3489
|
readonly inlineHelpText?: string | undefined;
|
|
4477
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4478
3490
|
readonly caseSensitive?: boolean | undefined;
|
|
4479
3491
|
readonly autonumberFormat?: string | undefined;
|
|
4480
3492
|
readonly index?: boolean | undefined;
|
|
@@ -4496,7 +3508,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4496
3508
|
readonly required?: boolean | undefined;
|
|
4497
3509
|
readonly multiple?: boolean | undefined;
|
|
4498
3510
|
readonly dependencies?: string[] | undefined;
|
|
4499
|
-
readonly theme?: string | undefined;
|
|
4500
3511
|
readonly externalId?: boolean | undefined;
|
|
4501
3512
|
readonly defaultValue?: unknown;
|
|
4502
3513
|
readonly group?: string | undefined;
|
|
@@ -4504,23 +3515,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4504
3515
|
readonly system?: boolean | undefined;
|
|
4505
3516
|
readonly min?: number | undefined;
|
|
4506
3517
|
readonly max?: number | undefined;
|
|
4507
|
-
readonly
|
|
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;
|
|
3518
|
+
readonly dimensions?: number | undefined;
|
|
4524
3519
|
readonly columnName?: string | undefined;
|
|
4525
3520
|
readonly searchable?: boolean | undefined;
|
|
4526
3521
|
readonly unique?: boolean | undefined;
|
|
@@ -4529,7 +3524,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4529
3524
|
readonly scale?: number | undefined;
|
|
4530
3525
|
readonly reference?: string | undefined;
|
|
4531
3526
|
readonly referenceFilters?: string[] | undefined;
|
|
4532
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4533
3527
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4534
3528
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4535
3529
|
readonly inlineTitle?: string | undefined;
|
|
@@ -4554,22 +3548,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4554
3548
|
relationshipField?: string | undefined;
|
|
4555
3549
|
} | undefined;
|
|
4556
3550
|
readonly language?: string | undefined;
|
|
4557
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4558
3551
|
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
3552
|
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
3553
|
readonly currencyConfig?: {
|
|
4574
3554
|
precision: number;
|
|
4575
3555
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -4623,29 +3603,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4623
3603
|
} | undefined;
|
|
4624
3604
|
maxVersions?: number | undefined;
|
|
4625
3605
|
} | 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;
|
|
3606
|
+
readonly trackHistory?: boolean | undefined;
|
|
4649
3607
|
readonly visibleWhen?: {
|
|
4650
3608
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4651
3609
|
source?: string | undefined;
|
|
@@ -4684,7 +3642,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
4684
3642
|
} | undefined;
|
|
4685
3643
|
readonly sortable?: boolean | undefined;
|
|
4686
3644
|
readonly inlineHelpText?: string | undefined;
|
|
4687
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4688
3645
|
readonly caseSensitive?: boolean | undefined;
|
|
4689
3646
|
readonly autonumberFormat?: string | undefined;
|
|
4690
3647
|
readonly index?: boolean | undefined;
|
|
@@ -4726,7 +3683,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4726
3683
|
multiple: boolean;
|
|
4727
3684
|
unique: boolean;
|
|
4728
3685
|
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
4729
|
-
auditTrail: boolean;
|
|
4730
3686
|
hidden: boolean;
|
|
4731
3687
|
readonly: boolean;
|
|
4732
3688
|
sortable: boolean;
|
|
@@ -4752,7 +3708,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4752
3708
|
}[] | undefined;
|
|
4753
3709
|
reference?: string | undefined;
|
|
4754
3710
|
referenceFilters?: string[] | undefined;
|
|
4755
|
-
writeRequiresMasterRead?: boolean | undefined;
|
|
4756
3711
|
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4757
3712
|
inlineTitle?: string | undefined;
|
|
4758
3713
|
inlineColumns?: any[] | undefined;
|
|
@@ -4784,28 +3739,14 @@ declare const SysApprovalAction: Omit<{
|
|
|
4784
3739
|
relationshipField?: string | undefined;
|
|
4785
3740
|
} | undefined;
|
|
4786
3741
|
language?: string | undefined;
|
|
4787
|
-
theme?: string | undefined;
|
|
4788
|
-
lineNumbers?: boolean | undefined;
|
|
4789
3742
|
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
3743
|
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
3744
|
currencyConfig?: {
|
|
4805
3745
|
precision: number;
|
|
4806
3746
|
currencyMode: "fixed" | "dynamic";
|
|
4807
3747
|
defaultCurrency: string;
|
|
4808
3748
|
} | undefined;
|
|
3749
|
+
dimensions?: number | undefined;
|
|
4809
3750
|
vectorConfig?: {
|
|
4810
3751
|
dimensions: number;
|
|
4811
3752
|
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
@@ -4854,46 +3795,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
4854
3795
|
} | undefined;
|
|
4855
3796
|
maxVersions?: number | undefined;
|
|
4856
3797
|
} | 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;
|
|
3798
|
+
trackHistory?: boolean | undefined;
|
|
4883
3799
|
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
3800
|
group?: string | undefined;
|
|
4898
3801
|
visibleWhen?: {
|
|
4899
3802
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -4965,7 +3868,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4965
3868
|
} | undefined;
|
|
4966
3869
|
system?: boolean | undefined;
|
|
4967
3870
|
inlineHelpText?: string | undefined;
|
|
4968
|
-
trackFeedHistory?: boolean | undefined;
|
|
4969
3871
|
caseSensitive?: boolean | undefined;
|
|
4970
3872
|
autonumberFormat?: string | undefined;
|
|
4971
3873
|
}>;
|
|
@@ -5056,12 +3958,13 @@ declare const SysApprovalAction: Omit<{
|
|
|
5056
3958
|
key: string;
|
|
5057
3959
|
interval?: string | undefined;
|
|
5058
3960
|
} | undefined;
|
|
5059
|
-
cdc?: {
|
|
5060
|
-
enabled: boolean;
|
|
5061
|
-
events: ("delete" | "update" | "insert")[];
|
|
5062
|
-
destination: string;
|
|
5063
|
-
} | undefined;
|
|
5064
3961
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
3962
|
+
activityMilestones?: {
|
|
3963
|
+
field: string;
|
|
3964
|
+
value: string;
|
|
3965
|
+
summary: string;
|
|
3966
|
+
type?: string | undefined;
|
|
3967
|
+
}[] | undefined;
|
|
5065
3968
|
displayNameField?: string | undefined;
|
|
5066
3969
|
recordName?: {
|
|
5067
3970
|
type: "text" | "autonumber";
|
|
@@ -5372,7 +4275,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5372
4275
|
clone: boolean;
|
|
5373
4276
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
5374
4277
|
} | undefined;
|
|
5375
|
-
recordTypes?: string[] | undefined;
|
|
5376
4278
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
5377
4279
|
publicSharing?: {
|
|
5378
4280
|
enabled: boolean;
|
|
@@ -5429,6 +4331,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
5429
4331
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
5430
4332
|
confirmText?: string | undefined;
|
|
5431
4333
|
successMessage?: string | undefined;
|
|
4334
|
+
errorMessage?: string | undefined;
|
|
4335
|
+
undoable?: boolean | undefined;
|
|
5432
4336
|
resultDialog?: {
|
|
5433
4337
|
title?: string | undefined;
|
|
5434
4338
|
description?: string | undefined;
|
|
@@ -5589,7 +4493,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5589
4493
|
readonly required?: boolean | undefined;
|
|
5590
4494
|
readonly multiple?: boolean | undefined;
|
|
5591
4495
|
readonly dependencies?: string[] | undefined;
|
|
5592
|
-
readonly theme?: string | undefined;
|
|
5593
4496
|
readonly externalId?: boolean | undefined;
|
|
5594
4497
|
readonly defaultValue?: unknown;
|
|
5595
4498
|
readonly group?: string | undefined;
|
|
@@ -5597,23 +4500,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5597
4500
|
readonly system?: boolean | undefined;
|
|
5598
4501
|
readonly min?: number | undefined;
|
|
5599
4502
|
readonly max?: number | undefined;
|
|
5600
|
-
readonly
|
|
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;
|
|
4503
|
+
readonly dimensions?: number | undefined;
|
|
5617
4504
|
readonly columnName?: string | undefined;
|
|
5618
4505
|
readonly searchable?: boolean | undefined;
|
|
5619
4506
|
readonly unique?: boolean | undefined;
|
|
@@ -5622,7 +4509,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5622
4509
|
readonly scale?: number | undefined;
|
|
5623
4510
|
readonly reference?: string | undefined;
|
|
5624
4511
|
readonly referenceFilters?: string[] | undefined;
|
|
5625
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5626
4512
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5627
4513
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5628
4514
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5647,22 +4533,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
5647
4533
|
relationshipField?: string | undefined;
|
|
5648
4534
|
} | undefined;
|
|
5649
4535
|
readonly language?: string | undefined;
|
|
5650
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5651
4536
|
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
4537
|
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
4538
|
readonly currencyConfig?: {
|
|
5667
4539
|
precision: number;
|
|
5668
4540
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5716,29 +4588,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5716
4588
|
} | undefined;
|
|
5717
4589
|
maxVersions?: number | undefined;
|
|
5718
4590
|
} | 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;
|
|
4591
|
+
readonly trackHistory?: boolean | undefined;
|
|
5742
4592
|
readonly visibleWhen?: {
|
|
5743
4593
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5744
4594
|
source?: string | undefined;
|
|
@@ -5777,7 +4627,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5777
4627
|
} | undefined;
|
|
5778
4628
|
readonly sortable?: boolean | undefined;
|
|
5779
4629
|
readonly inlineHelpText?: string | undefined;
|
|
5780
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5781
4630
|
readonly caseSensitive?: boolean | undefined;
|
|
5782
4631
|
readonly autonumberFormat?: string | undefined;
|
|
5783
4632
|
readonly index?: boolean | undefined;
|
|
@@ -5799,7 +4648,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5799
4648
|
readonly required?: boolean | undefined;
|
|
5800
4649
|
readonly multiple?: boolean | undefined;
|
|
5801
4650
|
readonly dependencies?: string[] | undefined;
|
|
5802
|
-
readonly theme?: string | undefined;
|
|
5803
4651
|
readonly externalId?: boolean | undefined;
|
|
5804
4652
|
readonly defaultValue?: unknown;
|
|
5805
4653
|
readonly group?: string | undefined;
|
|
@@ -5807,23 +4655,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5807
4655
|
readonly system?: boolean | undefined;
|
|
5808
4656
|
readonly min?: number | undefined;
|
|
5809
4657
|
readonly max?: number | undefined;
|
|
5810
|
-
readonly
|
|
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;
|
|
4658
|
+
readonly dimensions?: number | undefined;
|
|
5827
4659
|
readonly columnName?: string | undefined;
|
|
5828
4660
|
readonly searchable?: boolean | undefined;
|
|
5829
4661
|
readonly unique?: boolean | undefined;
|
|
@@ -5832,7 +4664,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5832
4664
|
readonly scale?: number | undefined;
|
|
5833
4665
|
reference: string;
|
|
5834
4666
|
readonly referenceFilters?: string[] | undefined;
|
|
5835
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5836
4667
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5837
4668
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5838
4669
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5857,22 +4688,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
5857
4688
|
relationshipField?: string | undefined;
|
|
5858
4689
|
} | undefined;
|
|
5859
4690
|
readonly language?: string | undefined;
|
|
5860
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5861
4691
|
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
4692
|
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
4693
|
readonly currencyConfig?: {
|
|
5877
4694
|
precision: number;
|
|
5878
4695
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5926,29 +4743,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5926
4743
|
} | undefined;
|
|
5927
4744
|
maxVersions?: number | undefined;
|
|
5928
4745
|
} | 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;
|
|
4746
|
+
readonly trackHistory?: boolean | undefined;
|
|
5952
4747
|
readonly visibleWhen?: {
|
|
5953
4748
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5954
4749
|
source?: string | undefined;
|
|
@@ -5987,7 +4782,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
5987
4782
|
} | undefined;
|
|
5988
4783
|
readonly sortable?: boolean | undefined;
|
|
5989
4784
|
readonly inlineHelpText?: string | undefined;
|
|
5990
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5991
4785
|
readonly caseSensitive?: boolean | undefined;
|
|
5992
4786
|
readonly autonumberFormat?: string | undefined;
|
|
5993
4787
|
readonly index?: boolean | undefined;
|
|
@@ -6009,7 +4803,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6009
4803
|
readonly required?: boolean | undefined;
|
|
6010
4804
|
readonly multiple?: boolean | undefined;
|
|
6011
4805
|
readonly dependencies?: string[] | undefined;
|
|
6012
|
-
readonly theme?: string | undefined;
|
|
6013
4806
|
readonly externalId?: boolean | undefined;
|
|
6014
4807
|
readonly defaultValue?: unknown;
|
|
6015
4808
|
readonly group?: string | undefined;
|
|
@@ -6017,23 +4810,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6017
4810
|
readonly system?: boolean | undefined;
|
|
6018
4811
|
readonly min?: number | undefined;
|
|
6019
4812
|
readonly max?: number | undefined;
|
|
6020
|
-
readonly
|
|
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;
|
|
4813
|
+
readonly dimensions?: number | undefined;
|
|
6037
4814
|
readonly columnName?: string | undefined;
|
|
6038
4815
|
readonly searchable?: boolean | undefined;
|
|
6039
4816
|
readonly unique?: boolean | undefined;
|
|
@@ -6042,7 +4819,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6042
4819
|
readonly scale?: number | undefined;
|
|
6043
4820
|
reference: string;
|
|
6044
4821
|
readonly referenceFilters?: string[] | undefined;
|
|
6045
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6046
4822
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6047
4823
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6048
4824
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6067,22 +4843,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
6067
4843
|
relationshipField?: string | undefined;
|
|
6068
4844
|
} | undefined;
|
|
6069
4845
|
readonly language?: string | undefined;
|
|
6070
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6071
4846
|
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
4847
|
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
4848
|
readonly currencyConfig?: {
|
|
6087
4849
|
precision: number;
|
|
6088
4850
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6136,29 +4898,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6136
4898
|
} | undefined;
|
|
6137
4899
|
maxVersions?: number | undefined;
|
|
6138
4900
|
} | 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;
|
|
4901
|
+
readonly trackHistory?: boolean | undefined;
|
|
6162
4902
|
readonly visibleWhen?: {
|
|
6163
4903
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6164
4904
|
source?: string | undefined;
|
|
@@ -6197,7 +4937,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6197
4937
|
} | undefined;
|
|
6198
4938
|
readonly sortable?: boolean | undefined;
|
|
6199
4939
|
readonly inlineHelpText?: string | undefined;
|
|
6200
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6201
4940
|
readonly caseSensitive?: boolean | undefined;
|
|
6202
4941
|
readonly autonumberFormat?: string | undefined;
|
|
6203
4942
|
readonly index?: boolean | undefined;
|
|
@@ -6219,7 +4958,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6219
4958
|
readonly required?: boolean | undefined;
|
|
6220
4959
|
readonly multiple?: boolean | undefined;
|
|
6221
4960
|
readonly dependencies?: string[] | undefined;
|
|
6222
|
-
readonly theme?: string | undefined;
|
|
6223
4961
|
readonly externalId?: boolean | undefined;
|
|
6224
4962
|
readonly defaultValue?: unknown;
|
|
6225
4963
|
readonly group?: string | undefined;
|
|
@@ -6227,23 +4965,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6227
4965
|
readonly system?: boolean | undefined;
|
|
6228
4966
|
readonly min?: number | undefined;
|
|
6229
4967
|
readonly max?: number | undefined;
|
|
6230
|
-
readonly
|
|
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;
|
|
4968
|
+
readonly dimensions?: number | undefined;
|
|
6247
4969
|
readonly columnName?: string | undefined;
|
|
6248
4970
|
readonly searchable?: boolean | undefined;
|
|
6249
4971
|
readonly unique?: boolean | undefined;
|
|
@@ -6252,7 +4974,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6252
4974
|
readonly scale?: number | undefined;
|
|
6253
4975
|
readonly reference?: string | undefined;
|
|
6254
4976
|
readonly referenceFilters?: string[] | undefined;
|
|
6255
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6256
4977
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6257
4978
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6258
4979
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6277,22 +4998,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
6277
4998
|
relationshipField?: string | undefined;
|
|
6278
4999
|
} | undefined;
|
|
6279
5000
|
readonly language?: string | undefined;
|
|
6280
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6281
5001
|
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
5002
|
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
5003
|
readonly currencyConfig?: {
|
|
6297
5004
|
precision: number;
|
|
6298
5005
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6346,29 +5053,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6346
5053
|
} | undefined;
|
|
6347
5054
|
maxVersions?: number | undefined;
|
|
6348
5055
|
} | 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;
|
|
5056
|
+
readonly trackHistory?: boolean | undefined;
|
|
6372
5057
|
readonly visibleWhen?: {
|
|
6373
5058
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6374
5059
|
source?: string | undefined;
|
|
@@ -6407,7 +5092,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6407
5092
|
} | undefined;
|
|
6408
5093
|
readonly sortable?: boolean | undefined;
|
|
6409
5094
|
readonly inlineHelpText?: string | undefined;
|
|
6410
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6411
5095
|
readonly caseSensitive?: boolean | undefined;
|
|
6412
5096
|
readonly autonumberFormat?: string | undefined;
|
|
6413
5097
|
readonly index?: boolean | undefined;
|
|
@@ -6429,7 +5113,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6429
5113
|
readonly required?: boolean | undefined;
|
|
6430
5114
|
readonly multiple?: boolean | undefined;
|
|
6431
5115
|
readonly dependencies?: string[] | undefined;
|
|
6432
|
-
readonly theme?: string | undefined;
|
|
6433
5116
|
readonly externalId?: boolean | undefined;
|
|
6434
5117
|
readonly defaultValue?: unknown;
|
|
6435
5118
|
readonly group?: string | undefined;
|
|
@@ -6437,23 +5120,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6437
5120
|
readonly system?: boolean | undefined;
|
|
6438
5121
|
readonly min?: number | undefined;
|
|
6439
5122
|
readonly max?: number | undefined;
|
|
6440
|
-
readonly
|
|
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;
|
|
5123
|
+
readonly dimensions?: number | undefined;
|
|
6457
5124
|
readonly columnName?: string | undefined;
|
|
6458
5125
|
readonly searchable?: boolean | undefined;
|
|
6459
5126
|
readonly unique?: boolean | undefined;
|
|
@@ -6462,7 +5129,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6462
5129
|
readonly scale?: number | undefined;
|
|
6463
5130
|
readonly reference?: string | undefined;
|
|
6464
5131
|
readonly referenceFilters?: string[] | undefined;
|
|
6465
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6466
5132
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6467
5133
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6468
5134
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6487,22 +5153,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
6487
5153
|
relationshipField?: string | undefined;
|
|
6488
5154
|
} | undefined;
|
|
6489
5155
|
readonly language?: string | undefined;
|
|
6490
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6491
5156
|
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
5157
|
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
5158
|
readonly currencyConfig?: {
|
|
6507
5159
|
precision: number;
|
|
6508
5160
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6556,29 +5208,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6556
5208
|
} | undefined;
|
|
6557
5209
|
maxVersions?: number | undefined;
|
|
6558
5210
|
} | 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;
|
|
5211
|
+
readonly trackHistory?: boolean | undefined;
|
|
6582
5212
|
readonly visibleWhen?: {
|
|
6583
5213
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6584
5214
|
source?: string | undefined;
|
|
@@ -6617,7 +5247,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6617
5247
|
} | undefined;
|
|
6618
5248
|
readonly sortable?: boolean | undefined;
|
|
6619
5249
|
readonly inlineHelpText?: string | undefined;
|
|
6620
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6621
5250
|
readonly caseSensitive?: boolean | undefined;
|
|
6622
5251
|
readonly autonumberFormat?: string | undefined;
|
|
6623
5252
|
readonly index?: boolean | undefined;
|
|
@@ -6639,7 +5268,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6639
5268
|
readonly required?: boolean | undefined;
|
|
6640
5269
|
readonly multiple?: boolean | undefined;
|
|
6641
5270
|
readonly dependencies?: string[] | undefined;
|
|
6642
|
-
readonly theme?: string | undefined;
|
|
6643
5271
|
readonly externalId?: boolean | undefined;
|
|
6644
5272
|
readonly defaultValue?: unknown;
|
|
6645
5273
|
readonly group?: string | undefined;
|
|
@@ -6647,23 +5275,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6647
5275
|
readonly system?: boolean | undefined;
|
|
6648
5276
|
readonly min?: number | undefined;
|
|
6649
5277
|
readonly max?: number | undefined;
|
|
6650
|
-
readonly
|
|
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;
|
|
5278
|
+
readonly dimensions?: number | undefined;
|
|
6667
5279
|
readonly columnName?: string | undefined;
|
|
6668
5280
|
readonly searchable?: boolean | undefined;
|
|
6669
5281
|
readonly unique?: boolean | undefined;
|
|
@@ -6672,7 +5284,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6672
5284
|
readonly scale?: number | undefined;
|
|
6673
5285
|
readonly reference?: string | undefined;
|
|
6674
5286
|
readonly referenceFilters?: string[] | undefined;
|
|
6675
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6676
5287
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6677
5288
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6678
5289
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6697,22 +5308,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
6697
5308
|
relationshipField?: string | undefined;
|
|
6698
5309
|
} | undefined;
|
|
6699
5310
|
readonly language?: string | undefined;
|
|
6700
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6701
5311
|
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
5312
|
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
5313
|
readonly currencyConfig?: {
|
|
6717
5314
|
precision: number;
|
|
6718
5315
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6766,29 +5363,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6766
5363
|
} | undefined;
|
|
6767
5364
|
maxVersions?: number | undefined;
|
|
6768
5365
|
} | 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;
|
|
5366
|
+
readonly trackHistory?: boolean | undefined;
|
|
6792
5367
|
readonly visibleWhen?: {
|
|
6793
5368
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6794
5369
|
source?: string | undefined;
|
|
@@ -6827,7 +5402,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6827
5402
|
} | undefined;
|
|
6828
5403
|
readonly sortable?: boolean | undefined;
|
|
6829
5404
|
readonly inlineHelpText?: string | undefined;
|
|
6830
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6831
5405
|
readonly caseSensitive?: boolean | undefined;
|
|
6832
5406
|
readonly autonumberFormat?: string | undefined;
|
|
6833
5407
|
readonly index?: boolean | undefined;
|
|
@@ -6849,7 +5423,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6849
5423
|
readonly required?: boolean | undefined;
|
|
6850
5424
|
readonly multiple?: boolean | undefined;
|
|
6851
5425
|
readonly dependencies?: string[] | undefined;
|
|
6852
|
-
readonly theme?: string | undefined;
|
|
6853
5426
|
readonly externalId?: boolean | undefined;
|
|
6854
5427
|
readonly defaultValue?: unknown;
|
|
6855
5428
|
readonly group?: string | undefined;
|
|
@@ -6857,23 +5430,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6857
5430
|
readonly system?: boolean | undefined;
|
|
6858
5431
|
readonly min?: number | undefined;
|
|
6859
5432
|
readonly max?: number | undefined;
|
|
6860
|
-
readonly
|
|
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;
|
|
5433
|
+
readonly dimensions?: number | undefined;
|
|
6877
5434
|
readonly columnName?: string | undefined;
|
|
6878
5435
|
readonly searchable?: boolean | undefined;
|
|
6879
5436
|
readonly unique?: boolean | undefined;
|
|
@@ -6882,7 +5439,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
6882
5439
|
readonly scale?: number | undefined;
|
|
6883
5440
|
reference: string;
|
|
6884
5441
|
readonly referenceFilters?: string[] | undefined;
|
|
6885
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6886
5442
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6887
5443
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6888
5444
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6907,22 +5463,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
6907
5463
|
relationshipField?: string | undefined;
|
|
6908
5464
|
} | undefined;
|
|
6909
5465
|
readonly language?: string | undefined;
|
|
6910
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6911
5466
|
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
5467
|
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
5468
|
readonly currencyConfig?: {
|
|
6927
5469
|
precision: number;
|
|
6928
5470
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6976,29 +5518,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6976
5518
|
} | undefined;
|
|
6977
5519
|
maxVersions?: number | undefined;
|
|
6978
5520
|
} | 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;
|
|
5521
|
+
readonly trackHistory?: boolean | undefined;
|
|
7002
5522
|
readonly visibleWhen?: {
|
|
7003
5523
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7004
5524
|
source?: string | undefined;
|
|
@@ -7037,7 +5557,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
7037
5557
|
} | undefined;
|
|
7038
5558
|
readonly sortable?: boolean | undefined;
|
|
7039
5559
|
readonly inlineHelpText?: string | undefined;
|
|
7040
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7041
5560
|
readonly caseSensitive?: boolean | undefined;
|
|
7042
5561
|
readonly autonumberFormat?: string | undefined;
|
|
7043
5562
|
readonly index?: boolean | undefined;
|
|
@@ -7059,7 +5578,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
7059
5578
|
readonly required?: boolean | undefined;
|
|
7060
5579
|
readonly multiple?: boolean | undefined;
|
|
7061
5580
|
readonly dependencies?: string[] | undefined;
|
|
7062
|
-
readonly theme?: string | undefined;
|
|
7063
5581
|
readonly externalId?: boolean | undefined;
|
|
7064
5582
|
readonly defaultValue?: unknown;
|
|
7065
5583
|
readonly group?: string | undefined;
|
|
@@ -7067,23 +5585,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
7067
5585
|
readonly system?: boolean | undefined;
|
|
7068
5586
|
readonly min?: number | undefined;
|
|
7069
5587
|
readonly max?: number | undefined;
|
|
7070
|
-
readonly
|
|
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;
|
|
5588
|
+
readonly dimensions?: number | undefined;
|
|
7087
5589
|
readonly columnName?: string | undefined;
|
|
7088
5590
|
readonly searchable?: boolean | undefined;
|
|
7089
5591
|
readonly unique?: boolean | undefined;
|
|
@@ -7092,7 +5594,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
7092
5594
|
readonly scale?: number | undefined;
|
|
7093
5595
|
readonly reference?: string | undefined;
|
|
7094
5596
|
readonly referenceFilters?: string[] | undefined;
|
|
7095
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7096
5597
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7097
5598
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7098
5599
|
readonly inlineTitle?: string | undefined;
|
|
@@ -7117,22 +5618,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
7117
5618
|
relationshipField?: string | undefined;
|
|
7118
5619
|
} | undefined;
|
|
7119
5620
|
readonly language?: string | undefined;
|
|
7120
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7121
5621
|
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
5622
|
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
5623
|
readonly currencyConfig?: {
|
|
7137
5624
|
precision: number;
|
|
7138
5625
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -7186,29 +5673,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
7186
5673
|
} | undefined;
|
|
7187
5674
|
maxVersions?: number | undefined;
|
|
7188
5675
|
} | 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;
|
|
5676
|
+
readonly trackHistory?: boolean | undefined;
|
|
7212
5677
|
readonly visibleWhen?: {
|
|
7213
5678
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7214
5679
|
source?: string | undefined;
|
|
@@ -7247,7 +5712,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
7247
5712
|
} | undefined;
|
|
7248
5713
|
readonly sortable?: boolean | undefined;
|
|
7249
5714
|
readonly inlineHelpText?: string | undefined;
|
|
7250
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7251
5715
|
readonly caseSensitive?: boolean | undefined;
|
|
7252
5716
|
readonly autonumberFormat?: string | undefined;
|
|
7253
5717
|
readonly index?: boolean | undefined;
|
|
@@ -7269,7 +5733,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
7269
5733
|
readonly required?: boolean | undefined;
|
|
7270
5734
|
readonly multiple?: boolean | undefined;
|
|
7271
5735
|
readonly dependencies?: string[] | undefined;
|
|
7272
|
-
readonly theme?: string | undefined;
|
|
7273
5736
|
readonly externalId?: boolean | undefined;
|
|
7274
5737
|
readonly defaultValue?: unknown;
|
|
7275
5738
|
readonly group?: string | undefined;
|
|
@@ -7277,23 +5740,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
7277
5740
|
readonly system?: boolean | undefined;
|
|
7278
5741
|
readonly min?: number | undefined;
|
|
7279
5742
|
readonly max?: number | undefined;
|
|
7280
|
-
readonly
|
|
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;
|
|
5743
|
+
readonly dimensions?: number | undefined;
|
|
7297
5744
|
readonly columnName?: string | undefined;
|
|
7298
5745
|
readonly searchable?: boolean | undefined;
|
|
7299
5746
|
readonly unique?: boolean | undefined;
|
|
@@ -7302,7 +5749,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
7302
5749
|
readonly scale?: number | undefined;
|
|
7303
5750
|
readonly reference?: string | undefined;
|
|
7304
5751
|
readonly referenceFilters?: string[] | undefined;
|
|
7305
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7306
5752
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7307
5753
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7308
5754
|
readonly inlineTitle?: string | undefined;
|
|
@@ -7327,22 +5773,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
7327
5773
|
relationshipField?: string | undefined;
|
|
7328
5774
|
} | undefined;
|
|
7329
5775
|
readonly language?: string | undefined;
|
|
7330
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7331
5776
|
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
5777
|
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
5778
|
readonly currencyConfig?: {
|
|
7347
5779
|
precision: number;
|
|
7348
5780
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -7396,29 +5828,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
7396
5828
|
} | undefined;
|
|
7397
5829
|
maxVersions?: number | undefined;
|
|
7398
5830
|
} | 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;
|
|
5831
|
+
readonly trackHistory?: boolean | undefined;
|
|
7422
5832
|
readonly visibleWhen?: {
|
|
7423
5833
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7424
5834
|
source?: string | undefined;
|
|
@@ -7457,7 +5867,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
7457
5867
|
} | undefined;
|
|
7458
5868
|
readonly sortable?: boolean | undefined;
|
|
7459
5869
|
readonly inlineHelpText?: string | undefined;
|
|
7460
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7461
5870
|
readonly caseSensitive?: boolean | undefined;
|
|
7462
5871
|
readonly autonumberFormat?: string | undefined;
|
|
7463
5872
|
readonly index?: boolean | undefined;
|
|
@@ -7506,7 +5915,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7506
5915
|
multiple: boolean;
|
|
7507
5916
|
unique: boolean;
|
|
7508
5917
|
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
7509
|
-
auditTrail: boolean;
|
|
7510
5918
|
hidden: boolean;
|
|
7511
5919
|
readonly: boolean;
|
|
7512
5920
|
sortable: boolean;
|
|
@@ -7532,7 +5940,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7532
5940
|
}[] | undefined;
|
|
7533
5941
|
reference?: string | undefined;
|
|
7534
5942
|
referenceFilters?: string[] | undefined;
|
|
7535
|
-
writeRequiresMasterRead?: boolean | undefined;
|
|
7536
5943
|
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7537
5944
|
inlineTitle?: string | undefined;
|
|
7538
5945
|
inlineColumns?: any[] | undefined;
|
|
@@ -7564,28 +5971,14 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7564
5971
|
relationshipField?: string | undefined;
|
|
7565
5972
|
} | undefined;
|
|
7566
5973
|
language?: string | undefined;
|
|
7567
|
-
theme?: string | undefined;
|
|
7568
|
-
lineNumbers?: boolean | undefined;
|
|
7569
5974
|
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
5975
|
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
5976
|
currencyConfig?: {
|
|
7585
5977
|
precision: number;
|
|
7586
5978
|
currencyMode: "fixed" | "dynamic";
|
|
7587
5979
|
defaultCurrency: string;
|
|
7588
5980
|
} | undefined;
|
|
5981
|
+
dimensions?: number | undefined;
|
|
7589
5982
|
vectorConfig?: {
|
|
7590
5983
|
dimensions: number;
|
|
7591
5984
|
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
@@ -7634,46 +6027,8 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7634
6027
|
} | undefined;
|
|
7635
6028
|
maxVersions?: number | undefined;
|
|
7636
6029
|
} | 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;
|
|
6030
|
+
trackHistory?: boolean | undefined;
|
|
7663
6031
|
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
6032
|
group?: string | undefined;
|
|
7678
6033
|
visibleWhen?: {
|
|
7679
6034
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -7745,7 +6100,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7745
6100
|
} | undefined;
|
|
7746
6101
|
system?: boolean | undefined;
|
|
7747
6102
|
inlineHelpText?: string | undefined;
|
|
7748
|
-
trackFeedHistory?: boolean | undefined;
|
|
7749
6103
|
caseSensitive?: boolean | undefined;
|
|
7750
6104
|
autonumberFormat?: string | undefined;
|
|
7751
6105
|
}>;
|
|
@@ -7836,12 +6190,13 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7836
6190
|
key: string;
|
|
7837
6191
|
interval?: string | undefined;
|
|
7838
6192
|
} | undefined;
|
|
7839
|
-
cdc?: {
|
|
7840
|
-
enabled: boolean;
|
|
7841
|
-
events: ("delete" | "update" | "insert")[];
|
|
7842
|
-
destination: string;
|
|
7843
|
-
} | undefined;
|
|
7844
6193
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
6194
|
+
activityMilestones?: {
|
|
6195
|
+
field: string;
|
|
6196
|
+
value: string;
|
|
6197
|
+
summary: string;
|
|
6198
|
+
type?: string | undefined;
|
|
6199
|
+
}[] | undefined;
|
|
7845
6200
|
displayNameField?: string | undefined;
|
|
7846
6201
|
recordName?: {
|
|
7847
6202
|
type: "text" | "autonumber";
|
|
@@ -8152,7 +6507,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8152
6507
|
clone: boolean;
|
|
8153
6508
|
apiMethods?: ("search" | "create" | "import" | "delete" | "list" | "get" | "update" | "upsert" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
8154
6509
|
} | undefined;
|
|
8155
|
-
recordTypes?: string[] | undefined;
|
|
8156
6510
|
sharingModel?: "full" | "read" | "private" | "read_write" | undefined;
|
|
8157
6511
|
publicSharing?: {
|
|
8158
6512
|
enabled: boolean;
|
|
@@ -8209,6 +6563,8 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8209
6563
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
8210
6564
|
confirmText?: string | undefined;
|
|
8211
6565
|
successMessage?: string | undefined;
|
|
6566
|
+
errorMessage?: string | undefined;
|
|
6567
|
+
undoable?: boolean | undefined;
|
|
8212
6568
|
resultDialog?: {
|
|
8213
6569
|
title?: string | undefined;
|
|
8214
6570
|
description?: string | undefined;
|
|
@@ -8302,7 +6658,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8302
6658
|
readonly required?: boolean | undefined;
|
|
8303
6659
|
readonly multiple?: boolean | undefined;
|
|
8304
6660
|
readonly dependencies?: string[] | undefined;
|
|
8305
|
-
readonly theme?: string | undefined;
|
|
8306
6661
|
readonly externalId?: boolean | undefined;
|
|
8307
6662
|
readonly defaultValue?: unknown;
|
|
8308
6663
|
readonly group?: string | undefined;
|
|
@@ -8310,23 +6665,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8310
6665
|
readonly system?: boolean | undefined;
|
|
8311
6666
|
readonly min?: number | undefined;
|
|
8312
6667
|
readonly max?: number | undefined;
|
|
8313
|
-
readonly
|
|
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;
|
|
6668
|
+
readonly dimensions?: number | undefined;
|
|
8330
6669
|
readonly columnName?: string | undefined;
|
|
8331
6670
|
readonly searchable?: boolean | undefined;
|
|
8332
6671
|
readonly unique?: boolean | undefined;
|
|
@@ -8335,7 +6674,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8335
6674
|
readonly scale?: number | undefined;
|
|
8336
6675
|
readonly reference?: string | undefined;
|
|
8337
6676
|
readonly referenceFilters?: string[] | undefined;
|
|
8338
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8339
6677
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8340
6678
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8341
6679
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8360,22 +6698,8 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8360
6698
|
relationshipField?: string | undefined;
|
|
8361
6699
|
} | undefined;
|
|
8362
6700
|
readonly language?: string | undefined;
|
|
8363
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8364
6701
|
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
6702
|
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
6703
|
readonly currencyConfig?: {
|
|
8380
6704
|
precision: number;
|
|
8381
6705
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8429,29 +6753,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8429
6753
|
} | undefined;
|
|
8430
6754
|
maxVersions?: number | undefined;
|
|
8431
6755
|
} | 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;
|
|
6756
|
+
readonly trackHistory?: boolean | undefined;
|
|
8455
6757
|
readonly visibleWhen?: {
|
|
8456
6758
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8457
6759
|
source?: string | undefined;
|
|
@@ -8490,7 +6792,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8490
6792
|
} | undefined;
|
|
8491
6793
|
readonly sortable?: boolean | undefined;
|
|
8492
6794
|
readonly inlineHelpText?: string | undefined;
|
|
8493
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8494
6795
|
readonly caseSensitive?: boolean | undefined;
|
|
8495
6796
|
readonly autonumberFormat?: string | undefined;
|
|
8496
6797
|
readonly index?: boolean | undefined;
|
|
@@ -8512,7 +6813,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8512
6813
|
readonly required?: boolean | undefined;
|
|
8513
6814
|
readonly multiple?: boolean | undefined;
|
|
8514
6815
|
readonly dependencies?: string[] | undefined;
|
|
8515
|
-
readonly theme?: string | undefined;
|
|
8516
6816
|
readonly externalId?: boolean | undefined;
|
|
8517
6817
|
readonly defaultValue?: unknown;
|
|
8518
6818
|
readonly group?: string | undefined;
|
|
@@ -8520,23 +6820,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8520
6820
|
readonly system?: boolean | undefined;
|
|
8521
6821
|
readonly min?: number | undefined;
|
|
8522
6822
|
readonly max?: number | undefined;
|
|
8523
|
-
readonly
|
|
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;
|
|
6823
|
+
readonly dimensions?: number | undefined;
|
|
8540
6824
|
readonly columnName?: string | undefined;
|
|
8541
6825
|
readonly searchable?: boolean | undefined;
|
|
8542
6826
|
readonly unique?: boolean | undefined;
|
|
@@ -8545,7 +6829,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8545
6829
|
readonly scale?: number | undefined;
|
|
8546
6830
|
reference: string;
|
|
8547
6831
|
readonly referenceFilters?: string[] | undefined;
|
|
8548
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8549
6832
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8550
6833
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8551
6834
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8570,22 +6853,8 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8570
6853
|
relationshipField?: string | undefined;
|
|
8571
6854
|
} | undefined;
|
|
8572
6855
|
readonly language?: string | undefined;
|
|
8573
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8574
6856
|
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
6857
|
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
6858
|
readonly currencyConfig?: {
|
|
8590
6859
|
precision: number;
|
|
8591
6860
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8639,29 +6908,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8639
6908
|
} | undefined;
|
|
8640
6909
|
maxVersions?: number | undefined;
|
|
8641
6910
|
} | 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;
|
|
6911
|
+
readonly trackHistory?: boolean | undefined;
|
|
8665
6912
|
readonly visibleWhen?: {
|
|
8666
6913
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8667
6914
|
source?: string | undefined;
|
|
@@ -8700,7 +6947,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8700
6947
|
} | undefined;
|
|
8701
6948
|
readonly sortable?: boolean | undefined;
|
|
8702
6949
|
readonly inlineHelpText?: string | undefined;
|
|
8703
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8704
6950
|
readonly caseSensitive?: boolean | undefined;
|
|
8705
6951
|
readonly autonumberFormat?: string | undefined;
|
|
8706
6952
|
readonly index?: boolean | undefined;
|
|
@@ -8722,7 +6968,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8722
6968
|
readonly required?: boolean | undefined;
|
|
8723
6969
|
readonly multiple?: boolean | undefined;
|
|
8724
6970
|
readonly dependencies?: string[] | undefined;
|
|
8725
|
-
readonly theme?: string | undefined;
|
|
8726
6971
|
readonly externalId?: boolean | undefined;
|
|
8727
6972
|
readonly defaultValue?: unknown;
|
|
8728
6973
|
readonly group?: string | undefined;
|
|
@@ -8730,23 +6975,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8730
6975
|
readonly system?: boolean | undefined;
|
|
8731
6976
|
readonly min?: number | undefined;
|
|
8732
6977
|
readonly max?: number | undefined;
|
|
8733
|
-
readonly
|
|
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;
|
|
6978
|
+
readonly dimensions?: number | undefined;
|
|
8750
6979
|
readonly columnName?: string | undefined;
|
|
8751
6980
|
readonly searchable?: boolean | undefined;
|
|
8752
6981
|
readonly unique?: boolean | undefined;
|
|
@@ -8755,7 +6984,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8755
6984
|
readonly scale?: number | undefined;
|
|
8756
6985
|
reference: string;
|
|
8757
6986
|
readonly referenceFilters?: string[] | undefined;
|
|
8758
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8759
6987
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8760
6988
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8761
6989
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8780,22 +7008,8 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8780
7008
|
relationshipField?: string | undefined;
|
|
8781
7009
|
} | undefined;
|
|
8782
7010
|
readonly language?: string | undefined;
|
|
8783
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8784
7011
|
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
7012
|
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
7013
|
readonly currencyConfig?: {
|
|
8800
7014
|
precision: number;
|
|
8801
7015
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8849,29 +7063,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8849
7063
|
} | undefined;
|
|
8850
7064
|
maxVersions?: number | undefined;
|
|
8851
7065
|
} | 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;
|
|
7066
|
+
readonly trackHistory?: boolean | undefined;
|
|
8875
7067
|
readonly visibleWhen?: {
|
|
8876
7068
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8877
7069
|
source?: string | undefined;
|
|
@@ -8910,7 +7102,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8910
7102
|
} | undefined;
|
|
8911
7103
|
readonly sortable?: boolean | undefined;
|
|
8912
7104
|
readonly inlineHelpText?: string | undefined;
|
|
8913
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8914
7105
|
readonly caseSensitive?: boolean | undefined;
|
|
8915
7106
|
readonly autonumberFormat?: string | undefined;
|
|
8916
7107
|
readonly index?: boolean | undefined;
|
|
@@ -8932,7 +7123,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8932
7123
|
readonly required?: boolean | undefined;
|
|
8933
7124
|
readonly multiple?: boolean | undefined;
|
|
8934
7125
|
readonly dependencies?: string[] | undefined;
|
|
8935
|
-
readonly theme?: string | undefined;
|
|
8936
7126
|
readonly externalId?: boolean | undefined;
|
|
8937
7127
|
readonly defaultValue?: unknown;
|
|
8938
7128
|
readonly group?: string | undefined;
|
|
@@ -8940,23 +7130,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8940
7130
|
readonly system?: boolean | undefined;
|
|
8941
7131
|
readonly min?: number | undefined;
|
|
8942
7132
|
readonly max?: number | undefined;
|
|
8943
|
-
readonly
|
|
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;
|
|
7133
|
+
readonly dimensions?: number | undefined;
|
|
8960
7134
|
readonly columnName?: string | undefined;
|
|
8961
7135
|
readonly searchable?: boolean | undefined;
|
|
8962
7136
|
readonly unique?: boolean | undefined;
|
|
@@ -8965,7 +7139,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8965
7139
|
readonly scale?: number | undefined;
|
|
8966
7140
|
readonly reference?: string | undefined;
|
|
8967
7141
|
readonly referenceFilters?: string[] | undefined;
|
|
8968
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8969
7142
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8970
7143
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8971
7144
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8990,22 +7163,8 @@ declare const SysApprovalApprover: Omit<{
|
|
|
8990
7163
|
relationshipField?: string | undefined;
|
|
8991
7164
|
} | undefined;
|
|
8992
7165
|
readonly language?: string | undefined;
|
|
8993
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8994
7166
|
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
7167
|
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
7168
|
readonly currencyConfig?: {
|
|
9010
7169
|
precision: number;
|
|
9011
7170
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -9059,29 +7218,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
9059
7218
|
} | undefined;
|
|
9060
7219
|
maxVersions?: number | undefined;
|
|
9061
7220
|
} | 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;
|
|
7221
|
+
readonly trackHistory?: boolean | undefined;
|
|
9085
7222
|
readonly visibleWhen?: {
|
|
9086
7223
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9087
7224
|
source?: string | undefined;
|
|
@@ -9120,7 +7257,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
9120
7257
|
} | undefined;
|
|
9121
7258
|
readonly sortable?: boolean | undefined;
|
|
9122
7259
|
readonly inlineHelpText?: string | undefined;
|
|
9123
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
9124
7260
|
readonly caseSensitive?: boolean | undefined;
|
|
9125
7261
|
readonly autonumberFormat?: string | undefined;
|
|
9126
7262
|
readonly index?: boolean | undefined;
|
|
@@ -9142,7 +7278,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
9142
7278
|
readonly required?: boolean | undefined;
|
|
9143
7279
|
readonly multiple?: boolean | undefined;
|
|
9144
7280
|
readonly dependencies?: string[] | undefined;
|
|
9145
|
-
readonly theme?: string | undefined;
|
|
9146
7281
|
readonly externalId?: boolean | undefined;
|
|
9147
7282
|
readonly defaultValue?: unknown;
|
|
9148
7283
|
readonly group?: string | undefined;
|
|
@@ -9150,23 +7285,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
9150
7285
|
readonly system?: boolean | undefined;
|
|
9151
7286
|
readonly min?: number | undefined;
|
|
9152
7287
|
readonly max?: number | undefined;
|
|
9153
|
-
readonly
|
|
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;
|
|
7288
|
+
readonly dimensions?: number | undefined;
|
|
9170
7289
|
readonly columnName?: string | undefined;
|
|
9171
7290
|
readonly searchable?: boolean | undefined;
|
|
9172
7291
|
readonly unique?: boolean | undefined;
|
|
@@ -9175,7 +7294,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
9175
7294
|
readonly scale?: number | undefined;
|
|
9176
7295
|
readonly reference?: string | undefined;
|
|
9177
7296
|
readonly referenceFilters?: string[] | undefined;
|
|
9178
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
9179
7297
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
9180
7298
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
9181
7299
|
readonly inlineTitle?: string | undefined;
|
|
@@ -9200,22 +7318,8 @@ declare const SysApprovalApprover: Omit<{
|
|
|
9200
7318
|
relationshipField?: string | undefined;
|
|
9201
7319
|
} | undefined;
|
|
9202
7320
|
readonly language?: string | undefined;
|
|
9203
|
-
readonly lineNumbers?: boolean | undefined;
|
|
9204
7321
|
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
7322
|
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
7323
|
readonly currencyConfig?: {
|
|
9220
7324
|
precision: number;
|
|
9221
7325
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -9269,29 +7373,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
9269
7373
|
} | undefined;
|
|
9270
7374
|
maxVersions?: number | undefined;
|
|
9271
7375
|
} | 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;
|
|
7376
|
+
readonly trackHistory?: boolean | undefined;
|
|
9295
7377
|
readonly visibleWhen?: {
|
|
9296
7378
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9297
7379
|
source?: string | undefined;
|
|
@@ -9330,7 +7412,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
9330
7412
|
} | undefined;
|
|
9331
7413
|
readonly sortable?: boolean | undefined;
|
|
9332
7414
|
readonly inlineHelpText?: string | undefined;
|
|
9333
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
9334
7415
|
readonly caseSensitive?: boolean | undefined;
|
|
9335
7416
|
readonly autonumberFormat?: string | undefined;
|
|
9336
7417
|
readonly index?: boolean | undefined;
|