@objectstack/service-storage 9.6.0 → 9.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +50 -2066
- package/dist/index.d.ts +50 -2066
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/package.json +5 -4
package/dist/index.d.ts
CHANGED
|
@@ -430,8 +430,8 @@ declare function registerStorageRoutes(httpServer: IHttpServer, storage: IStorag
|
|
|
430
430
|
* 2. Files can be moved between buckets / storage tiers without breaking links.
|
|
431
431
|
* 3. Lifecycle status (uploading → committed → deleted) can be tracked.
|
|
432
432
|
*
|
|
433
|
-
* Belongs to `@objectstack/service-storage` per the
|
|
434
|
-
* "protocol + service ownership" pattern
|
|
433
|
+
* Belongs to `@objectstack/service-storage` per the platform's
|
|
434
|
+
* "protocol + service ownership" pattern.
|
|
435
435
|
*/
|
|
436
436
|
declare const SystemFile: Omit<{
|
|
437
437
|
name: string;
|
|
@@ -446,7 +446,6 @@ declare const SystemFile: Omit<{
|
|
|
446
446
|
multiple: boolean;
|
|
447
447
|
unique: boolean;
|
|
448
448
|
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
449
|
-
auditTrail: boolean;
|
|
450
449
|
hidden: boolean;
|
|
451
450
|
readonly: boolean;
|
|
452
451
|
sortable: boolean;
|
|
@@ -472,7 +471,6 @@ declare const SystemFile: Omit<{
|
|
|
472
471
|
}[] | undefined;
|
|
473
472
|
reference?: string | undefined;
|
|
474
473
|
referenceFilters?: string[] | undefined;
|
|
475
|
-
writeRequiresMasterRead?: boolean | undefined;
|
|
476
474
|
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
477
475
|
inlineTitle?: string | undefined;
|
|
478
476
|
inlineColumns?: any[] | undefined;
|
|
@@ -504,23 +502,8 @@ declare const SystemFile: Omit<{
|
|
|
504
502
|
relationshipField?: string | undefined;
|
|
505
503
|
} | undefined;
|
|
506
504
|
language?: string | undefined;
|
|
507
|
-
theme?: string | undefined;
|
|
508
|
-
lineNumbers?: boolean | undefined;
|
|
509
505
|
maxRating?: number | undefined;
|
|
510
|
-
allowHalf?: boolean | undefined;
|
|
511
|
-
displayMap?: boolean | undefined;
|
|
512
|
-
allowGeocoding?: boolean | undefined;
|
|
513
|
-
addressFormat?: "us" | "uk" | "international" | undefined;
|
|
514
|
-
colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
515
|
-
allowAlpha?: boolean | undefined;
|
|
516
|
-
presetColors?: string[] | undefined;
|
|
517
506
|
step?: number | undefined;
|
|
518
|
-
showValue?: boolean | undefined;
|
|
519
|
-
marks?: Record<string, string> | undefined;
|
|
520
|
-
barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
521
|
-
qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
522
|
-
displayValue?: boolean | undefined;
|
|
523
|
-
allowScanning?: boolean | undefined;
|
|
524
507
|
currencyConfig?: {
|
|
525
508
|
precision: number;
|
|
526
509
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -574,46 +557,8 @@ declare const SystemFile: Omit<{
|
|
|
574
557
|
} | undefined;
|
|
575
558
|
maxVersions?: number | undefined;
|
|
576
559
|
} | undefined;
|
|
577
|
-
|
|
578
|
-
enabled: boolean;
|
|
579
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
580
|
-
keyManagement: {
|
|
581
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
582
|
-
keyId?: string | undefined;
|
|
583
|
-
rotationPolicy?: {
|
|
584
|
-
enabled: boolean;
|
|
585
|
-
frequencyDays: number;
|
|
586
|
-
retainOldVersions: number;
|
|
587
|
-
autoRotate: boolean;
|
|
588
|
-
} | undefined;
|
|
589
|
-
};
|
|
590
|
-
scope: "field" | "record" | "table" | "database";
|
|
591
|
-
deterministicEncryption: boolean;
|
|
592
|
-
searchableEncryption: boolean;
|
|
593
|
-
} | undefined;
|
|
594
|
-
maskingRule?: {
|
|
595
|
-
field: string;
|
|
596
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
597
|
-
preserveFormat: boolean;
|
|
598
|
-
preserveLength: boolean;
|
|
599
|
-
pattern?: string | undefined;
|
|
600
|
-
roles?: string[] | undefined;
|
|
601
|
-
exemptRoles?: string[] | undefined;
|
|
602
|
-
} | undefined;
|
|
560
|
+
trackHistory?: boolean | undefined;
|
|
603
561
|
dependencies?: string[] | undefined;
|
|
604
|
-
cached?: {
|
|
605
|
-
enabled: boolean;
|
|
606
|
-
ttl: number;
|
|
607
|
-
invalidateOn: string[];
|
|
608
|
-
} | undefined;
|
|
609
|
-
dataQuality?: {
|
|
610
|
-
uniqueness: boolean;
|
|
611
|
-
completeness: number;
|
|
612
|
-
accuracy?: {
|
|
613
|
-
source: string;
|
|
614
|
-
threshold: number;
|
|
615
|
-
} | undefined;
|
|
616
|
-
} | undefined;
|
|
617
562
|
group?: string | undefined;
|
|
618
563
|
visibleWhen?: {
|
|
619
564
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -685,7 +630,6 @@ declare const SystemFile: Omit<{
|
|
|
685
630
|
} | undefined;
|
|
686
631
|
system?: boolean | undefined;
|
|
687
632
|
inlineHelpText?: string | undefined;
|
|
688
|
-
trackFeedHistory?: boolean | undefined;
|
|
689
633
|
caseSensitive?: boolean | undefined;
|
|
690
634
|
autonumberFormat?: string | undefined;
|
|
691
635
|
}>;
|
|
@@ -776,12 +720,13 @@ declare const SystemFile: Omit<{
|
|
|
776
720
|
key: string;
|
|
777
721
|
interval?: string | undefined;
|
|
778
722
|
} | undefined;
|
|
779
|
-
cdc?: {
|
|
780
|
-
enabled: boolean;
|
|
781
|
-
events: ("delete" | "update" | "insert")[];
|
|
782
|
-
destination: string;
|
|
783
|
-
} | undefined;
|
|
784
723
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
724
|
+
activityMilestones?: {
|
|
725
|
+
field: string;
|
|
726
|
+
value: string;
|
|
727
|
+
summary: string;
|
|
728
|
+
type?: string | undefined;
|
|
729
|
+
}[] | undefined;
|
|
785
730
|
displayNameField?: string | undefined;
|
|
786
731
|
recordName?: {
|
|
787
732
|
type: "text" | "autonumber";
|
|
@@ -1092,7 +1037,6 @@ declare const SystemFile: Omit<{
|
|
|
1092
1037
|
clone: boolean;
|
|
1093
1038
|
apiMethods?: ("get" | "delete" | "list" | "search" | "upsert" | "create" | "import" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
1094
1039
|
} | undefined;
|
|
1095
|
-
recordTypes?: string[] | undefined;
|
|
1096
1040
|
sharingModel?: "private" | "full" | "read" | "read_write" | undefined;
|
|
1097
1041
|
publicSharing?: {
|
|
1098
1042
|
enabled: boolean;
|
|
@@ -1239,7 +1183,6 @@ declare const SystemFile: Omit<{
|
|
|
1239
1183
|
readonly required?: boolean | undefined;
|
|
1240
1184
|
readonly multiple?: boolean | undefined;
|
|
1241
1185
|
readonly dependencies?: string[] | undefined;
|
|
1242
|
-
readonly theme?: string | undefined;
|
|
1243
1186
|
readonly externalId?: boolean | undefined;
|
|
1244
1187
|
readonly defaultValue?: unknown;
|
|
1245
1188
|
readonly group?: string | undefined;
|
|
@@ -1247,23 +1190,6 @@ declare const SystemFile: Omit<{
|
|
|
1247
1190
|
readonly system?: boolean | undefined;
|
|
1248
1191
|
readonly min?: number | undefined;
|
|
1249
1192
|
readonly max?: number | undefined;
|
|
1250
|
-
readonly encryptionConfig?: {
|
|
1251
|
-
enabled: boolean;
|
|
1252
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1253
|
-
keyManagement: {
|
|
1254
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1255
|
-
keyId?: string | undefined;
|
|
1256
|
-
rotationPolicy?: {
|
|
1257
|
-
enabled: boolean;
|
|
1258
|
-
frequencyDays: number;
|
|
1259
|
-
retainOldVersions: number;
|
|
1260
|
-
autoRotate: boolean;
|
|
1261
|
-
} | undefined;
|
|
1262
|
-
};
|
|
1263
|
-
scope: "record" | "field" | "table" | "database";
|
|
1264
|
-
deterministicEncryption: boolean;
|
|
1265
|
-
searchableEncryption: boolean;
|
|
1266
|
-
} | undefined;
|
|
1267
1193
|
readonly columnName?: string | undefined;
|
|
1268
1194
|
readonly searchable?: boolean | undefined;
|
|
1269
1195
|
readonly unique?: boolean | undefined;
|
|
@@ -1272,7 +1198,6 @@ declare const SystemFile: Omit<{
|
|
|
1272
1198
|
readonly scale?: number | undefined;
|
|
1273
1199
|
readonly reference?: string | undefined;
|
|
1274
1200
|
readonly referenceFilters?: string[] | undefined;
|
|
1275
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1276
1201
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1277
1202
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1278
1203
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1297,22 +1222,8 @@ declare const SystemFile: Omit<{
|
|
|
1297
1222
|
relationshipField?: string | undefined;
|
|
1298
1223
|
} | undefined;
|
|
1299
1224
|
readonly language?: string | undefined;
|
|
1300
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1301
1225
|
readonly maxRating?: number | undefined;
|
|
1302
|
-
readonly allowHalf?: boolean | undefined;
|
|
1303
|
-
readonly displayMap?: boolean | undefined;
|
|
1304
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1305
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1306
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1307
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1308
|
-
readonly presetColors?: string[] | undefined;
|
|
1309
1226
|
readonly step?: number | undefined;
|
|
1310
|
-
readonly showValue?: boolean | undefined;
|
|
1311
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1312
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1313
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1314
|
-
readonly displayValue?: boolean | undefined;
|
|
1315
|
-
readonly allowScanning?: boolean | undefined;
|
|
1316
1227
|
readonly currencyConfig?: {
|
|
1317
1228
|
precision: number;
|
|
1318
1229
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1366,29 +1277,7 @@ declare const SystemFile: Omit<{
|
|
|
1366
1277
|
} | undefined;
|
|
1367
1278
|
maxVersions?: number | undefined;
|
|
1368
1279
|
} | undefined;
|
|
1369
|
-
readonly
|
|
1370
|
-
field: string;
|
|
1371
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1372
|
-
preserveFormat: boolean;
|
|
1373
|
-
preserveLength: boolean;
|
|
1374
|
-
pattern?: string | undefined;
|
|
1375
|
-
roles?: string[] | undefined;
|
|
1376
|
-
exemptRoles?: string[] | undefined;
|
|
1377
|
-
} | undefined;
|
|
1378
|
-
readonly auditTrail?: boolean | undefined;
|
|
1379
|
-
readonly cached?: {
|
|
1380
|
-
enabled: boolean;
|
|
1381
|
-
ttl: number;
|
|
1382
|
-
invalidateOn: string[];
|
|
1383
|
-
} | undefined;
|
|
1384
|
-
readonly dataQuality?: {
|
|
1385
|
-
uniqueness: boolean;
|
|
1386
|
-
completeness: number;
|
|
1387
|
-
accuracy?: {
|
|
1388
|
-
source: string;
|
|
1389
|
-
threshold: number;
|
|
1390
|
-
} | undefined;
|
|
1391
|
-
} | undefined;
|
|
1280
|
+
readonly trackHistory?: boolean | undefined;
|
|
1392
1281
|
readonly visibleWhen?: {
|
|
1393
1282
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1394
1283
|
source?: string | undefined;
|
|
@@ -1427,7 +1316,6 @@ declare const SystemFile: Omit<{
|
|
|
1427
1316
|
} | undefined;
|
|
1428
1317
|
readonly sortable?: boolean | undefined;
|
|
1429
1318
|
readonly inlineHelpText?: string | undefined;
|
|
1430
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1431
1319
|
readonly caseSensitive?: boolean | undefined;
|
|
1432
1320
|
readonly autonumberFormat?: string | undefined;
|
|
1433
1321
|
readonly index?: boolean | undefined;
|
|
@@ -1449,7 +1337,6 @@ declare const SystemFile: Omit<{
|
|
|
1449
1337
|
readonly required?: boolean | undefined;
|
|
1450
1338
|
readonly multiple?: boolean | undefined;
|
|
1451
1339
|
readonly dependencies?: string[] | undefined;
|
|
1452
|
-
readonly theme?: string | undefined;
|
|
1453
1340
|
readonly externalId?: boolean | undefined;
|
|
1454
1341
|
readonly defaultValue?: unknown;
|
|
1455
1342
|
readonly group?: string | undefined;
|
|
@@ -1457,23 +1344,6 @@ declare const SystemFile: Omit<{
|
|
|
1457
1344
|
readonly system?: boolean | undefined;
|
|
1458
1345
|
readonly min?: number | undefined;
|
|
1459
1346
|
readonly max?: number | undefined;
|
|
1460
|
-
readonly encryptionConfig?: {
|
|
1461
|
-
enabled: boolean;
|
|
1462
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1463
|
-
keyManagement: {
|
|
1464
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1465
|
-
keyId?: string | undefined;
|
|
1466
|
-
rotationPolicy?: {
|
|
1467
|
-
enabled: boolean;
|
|
1468
|
-
frequencyDays: number;
|
|
1469
|
-
retainOldVersions: number;
|
|
1470
|
-
autoRotate: boolean;
|
|
1471
|
-
} | undefined;
|
|
1472
|
-
};
|
|
1473
|
-
scope: "record" | "field" | "table" | "database";
|
|
1474
|
-
deterministicEncryption: boolean;
|
|
1475
|
-
searchableEncryption: boolean;
|
|
1476
|
-
} | undefined;
|
|
1477
1347
|
readonly columnName?: string | undefined;
|
|
1478
1348
|
readonly searchable?: boolean | undefined;
|
|
1479
1349
|
readonly unique?: boolean | undefined;
|
|
@@ -1482,7 +1352,6 @@ declare const SystemFile: Omit<{
|
|
|
1482
1352
|
readonly scale?: number | undefined;
|
|
1483
1353
|
readonly reference?: string | undefined;
|
|
1484
1354
|
readonly referenceFilters?: string[] | undefined;
|
|
1485
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1486
1355
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1487
1356
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1488
1357
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1507,22 +1376,8 @@ declare const SystemFile: Omit<{
|
|
|
1507
1376
|
relationshipField?: string | undefined;
|
|
1508
1377
|
} | undefined;
|
|
1509
1378
|
readonly language?: string | undefined;
|
|
1510
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1511
1379
|
readonly maxRating?: number | undefined;
|
|
1512
|
-
readonly allowHalf?: boolean | undefined;
|
|
1513
|
-
readonly displayMap?: boolean | undefined;
|
|
1514
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1515
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1516
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1517
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1518
|
-
readonly presetColors?: string[] | undefined;
|
|
1519
1380
|
readonly step?: number | undefined;
|
|
1520
|
-
readonly showValue?: boolean | undefined;
|
|
1521
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1522
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1523
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1524
|
-
readonly displayValue?: boolean | undefined;
|
|
1525
|
-
readonly allowScanning?: boolean | undefined;
|
|
1526
1381
|
readonly currencyConfig?: {
|
|
1527
1382
|
precision: number;
|
|
1528
1383
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1576,29 +1431,7 @@ declare const SystemFile: Omit<{
|
|
|
1576
1431
|
} | undefined;
|
|
1577
1432
|
maxVersions?: number | undefined;
|
|
1578
1433
|
} | undefined;
|
|
1579
|
-
readonly
|
|
1580
|
-
field: string;
|
|
1581
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1582
|
-
preserveFormat: boolean;
|
|
1583
|
-
preserveLength: boolean;
|
|
1584
|
-
pattern?: string | undefined;
|
|
1585
|
-
roles?: string[] | undefined;
|
|
1586
|
-
exemptRoles?: string[] | undefined;
|
|
1587
|
-
} | undefined;
|
|
1588
|
-
readonly auditTrail?: boolean | undefined;
|
|
1589
|
-
readonly cached?: {
|
|
1590
|
-
enabled: boolean;
|
|
1591
|
-
ttl: number;
|
|
1592
|
-
invalidateOn: string[];
|
|
1593
|
-
} | undefined;
|
|
1594
|
-
readonly dataQuality?: {
|
|
1595
|
-
uniqueness: boolean;
|
|
1596
|
-
completeness: number;
|
|
1597
|
-
accuracy?: {
|
|
1598
|
-
source: string;
|
|
1599
|
-
threshold: number;
|
|
1600
|
-
} | undefined;
|
|
1601
|
-
} | undefined;
|
|
1434
|
+
readonly trackHistory?: boolean | undefined;
|
|
1602
1435
|
readonly visibleWhen?: {
|
|
1603
1436
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1604
1437
|
source?: string | undefined;
|
|
@@ -1637,7 +1470,6 @@ declare const SystemFile: Omit<{
|
|
|
1637
1470
|
} | undefined;
|
|
1638
1471
|
readonly sortable?: boolean | undefined;
|
|
1639
1472
|
readonly inlineHelpText?: string | undefined;
|
|
1640
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1641
1473
|
readonly caseSensitive?: boolean | undefined;
|
|
1642
1474
|
readonly autonumberFormat?: string | undefined;
|
|
1643
1475
|
readonly index?: boolean | undefined;
|
|
@@ -1659,7 +1491,6 @@ declare const SystemFile: Omit<{
|
|
|
1659
1491
|
readonly required?: boolean | undefined;
|
|
1660
1492
|
readonly multiple?: boolean | undefined;
|
|
1661
1493
|
readonly dependencies?: string[] | undefined;
|
|
1662
|
-
readonly theme?: string | undefined;
|
|
1663
1494
|
readonly externalId?: boolean | undefined;
|
|
1664
1495
|
readonly defaultValue?: unknown;
|
|
1665
1496
|
readonly group?: string | undefined;
|
|
@@ -1667,23 +1498,6 @@ declare const SystemFile: Omit<{
|
|
|
1667
1498
|
readonly system?: boolean | undefined;
|
|
1668
1499
|
readonly min?: number | undefined;
|
|
1669
1500
|
readonly max?: number | undefined;
|
|
1670
|
-
readonly encryptionConfig?: {
|
|
1671
|
-
enabled: boolean;
|
|
1672
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1673
|
-
keyManagement: {
|
|
1674
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1675
|
-
keyId?: string | undefined;
|
|
1676
|
-
rotationPolicy?: {
|
|
1677
|
-
enabled: boolean;
|
|
1678
|
-
frequencyDays: number;
|
|
1679
|
-
retainOldVersions: number;
|
|
1680
|
-
autoRotate: boolean;
|
|
1681
|
-
} | undefined;
|
|
1682
|
-
};
|
|
1683
|
-
scope: "record" | "field" | "table" | "database";
|
|
1684
|
-
deterministicEncryption: boolean;
|
|
1685
|
-
searchableEncryption: boolean;
|
|
1686
|
-
} | undefined;
|
|
1687
1501
|
readonly columnName?: string | undefined;
|
|
1688
1502
|
readonly searchable?: boolean | undefined;
|
|
1689
1503
|
readonly unique?: boolean | undefined;
|
|
@@ -1692,7 +1506,6 @@ declare const SystemFile: Omit<{
|
|
|
1692
1506
|
readonly scale?: number | undefined;
|
|
1693
1507
|
readonly reference?: string | undefined;
|
|
1694
1508
|
readonly referenceFilters?: string[] | undefined;
|
|
1695
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1696
1509
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1697
1510
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1698
1511
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1717,22 +1530,8 @@ declare const SystemFile: Omit<{
|
|
|
1717
1530
|
relationshipField?: string | undefined;
|
|
1718
1531
|
} | undefined;
|
|
1719
1532
|
readonly language?: string | undefined;
|
|
1720
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1721
1533
|
readonly maxRating?: number | undefined;
|
|
1722
|
-
readonly allowHalf?: boolean | undefined;
|
|
1723
|
-
readonly displayMap?: boolean | undefined;
|
|
1724
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1725
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1726
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1727
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1728
|
-
readonly presetColors?: string[] | undefined;
|
|
1729
1534
|
readonly step?: number | undefined;
|
|
1730
|
-
readonly showValue?: boolean | undefined;
|
|
1731
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1732
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1733
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1734
|
-
readonly displayValue?: boolean | undefined;
|
|
1735
|
-
readonly allowScanning?: boolean | undefined;
|
|
1736
1535
|
readonly currencyConfig?: {
|
|
1737
1536
|
precision: number;
|
|
1738
1537
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1786,29 +1585,7 @@ declare const SystemFile: Omit<{
|
|
|
1786
1585
|
} | undefined;
|
|
1787
1586
|
maxVersions?: number | undefined;
|
|
1788
1587
|
} | undefined;
|
|
1789
|
-
readonly
|
|
1790
|
-
field: string;
|
|
1791
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
1792
|
-
preserveFormat: boolean;
|
|
1793
|
-
preserveLength: boolean;
|
|
1794
|
-
pattern?: string | undefined;
|
|
1795
|
-
roles?: string[] | undefined;
|
|
1796
|
-
exemptRoles?: string[] | undefined;
|
|
1797
|
-
} | undefined;
|
|
1798
|
-
readonly auditTrail?: boolean | undefined;
|
|
1799
|
-
readonly cached?: {
|
|
1800
|
-
enabled: boolean;
|
|
1801
|
-
ttl: number;
|
|
1802
|
-
invalidateOn: string[];
|
|
1803
|
-
} | undefined;
|
|
1804
|
-
readonly dataQuality?: {
|
|
1805
|
-
uniqueness: boolean;
|
|
1806
|
-
completeness: number;
|
|
1807
|
-
accuracy?: {
|
|
1808
|
-
source: string;
|
|
1809
|
-
threshold: number;
|
|
1810
|
-
} | undefined;
|
|
1811
|
-
} | undefined;
|
|
1588
|
+
readonly trackHistory?: boolean | undefined;
|
|
1812
1589
|
readonly visibleWhen?: {
|
|
1813
1590
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1814
1591
|
source?: string | undefined;
|
|
@@ -1847,7 +1624,6 @@ declare const SystemFile: Omit<{
|
|
|
1847
1624
|
} | undefined;
|
|
1848
1625
|
readonly sortable?: boolean | undefined;
|
|
1849
1626
|
readonly inlineHelpText?: string | undefined;
|
|
1850
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1851
1627
|
readonly caseSensitive?: boolean | undefined;
|
|
1852
1628
|
readonly autonumberFormat?: string | undefined;
|
|
1853
1629
|
readonly index?: boolean | undefined;
|
|
@@ -1869,7 +1645,6 @@ declare const SystemFile: Omit<{
|
|
|
1869
1645
|
readonly required?: boolean | undefined;
|
|
1870
1646
|
readonly multiple?: boolean | undefined;
|
|
1871
1647
|
readonly dependencies?: string[] | undefined;
|
|
1872
|
-
readonly theme?: string | undefined;
|
|
1873
1648
|
readonly externalId?: boolean | undefined;
|
|
1874
1649
|
readonly defaultValue?: unknown;
|
|
1875
1650
|
readonly group?: string | undefined;
|
|
@@ -1877,23 +1652,6 @@ declare const SystemFile: Omit<{
|
|
|
1877
1652
|
readonly system?: boolean | undefined;
|
|
1878
1653
|
readonly min?: number | undefined;
|
|
1879
1654
|
readonly max?: number | undefined;
|
|
1880
|
-
readonly encryptionConfig?: {
|
|
1881
|
-
enabled: boolean;
|
|
1882
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
1883
|
-
keyManagement: {
|
|
1884
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
1885
|
-
keyId?: string | undefined;
|
|
1886
|
-
rotationPolicy?: {
|
|
1887
|
-
enabled: boolean;
|
|
1888
|
-
frequencyDays: number;
|
|
1889
|
-
retainOldVersions: number;
|
|
1890
|
-
autoRotate: boolean;
|
|
1891
|
-
} | undefined;
|
|
1892
|
-
};
|
|
1893
|
-
scope: "record" | "field" | "table" | "database";
|
|
1894
|
-
deterministicEncryption: boolean;
|
|
1895
|
-
searchableEncryption: boolean;
|
|
1896
|
-
} | undefined;
|
|
1897
1655
|
readonly columnName?: string | undefined;
|
|
1898
1656
|
readonly searchable?: boolean | undefined;
|
|
1899
1657
|
readonly unique?: boolean | undefined;
|
|
@@ -1902,7 +1660,6 @@ declare const SystemFile: Omit<{
|
|
|
1902
1660
|
readonly scale?: number | undefined;
|
|
1903
1661
|
readonly reference?: string | undefined;
|
|
1904
1662
|
readonly referenceFilters?: string[] | undefined;
|
|
1905
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1906
1663
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1907
1664
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1908
1665
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1927,22 +1684,8 @@ declare const SystemFile: Omit<{
|
|
|
1927
1684
|
relationshipField?: string | undefined;
|
|
1928
1685
|
} | undefined;
|
|
1929
1686
|
readonly language?: string | undefined;
|
|
1930
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1931
1687
|
readonly maxRating?: number | undefined;
|
|
1932
|
-
readonly allowHalf?: boolean | undefined;
|
|
1933
|
-
readonly displayMap?: boolean | undefined;
|
|
1934
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
1935
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
1936
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
1937
|
-
readonly allowAlpha?: boolean | undefined;
|
|
1938
|
-
readonly presetColors?: string[] | undefined;
|
|
1939
1688
|
readonly step?: number | undefined;
|
|
1940
|
-
readonly showValue?: boolean | undefined;
|
|
1941
|
-
readonly marks?: Record<string, string> | undefined;
|
|
1942
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
1943
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
1944
|
-
readonly displayValue?: boolean | undefined;
|
|
1945
|
-
readonly allowScanning?: boolean | undefined;
|
|
1946
1689
|
readonly currencyConfig?: {
|
|
1947
1690
|
precision: number;
|
|
1948
1691
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1996,29 +1739,7 @@ declare const SystemFile: Omit<{
|
|
|
1996
1739
|
} | undefined;
|
|
1997
1740
|
maxVersions?: number | undefined;
|
|
1998
1741
|
} | undefined;
|
|
1999
|
-
readonly
|
|
2000
|
-
field: string;
|
|
2001
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2002
|
-
preserveFormat: boolean;
|
|
2003
|
-
preserveLength: boolean;
|
|
2004
|
-
pattern?: string | undefined;
|
|
2005
|
-
roles?: string[] | undefined;
|
|
2006
|
-
exemptRoles?: string[] | undefined;
|
|
2007
|
-
} | undefined;
|
|
2008
|
-
readonly auditTrail?: boolean | undefined;
|
|
2009
|
-
readonly cached?: {
|
|
2010
|
-
enabled: boolean;
|
|
2011
|
-
ttl: number;
|
|
2012
|
-
invalidateOn: string[];
|
|
2013
|
-
} | undefined;
|
|
2014
|
-
readonly dataQuality?: {
|
|
2015
|
-
uniqueness: boolean;
|
|
2016
|
-
completeness: number;
|
|
2017
|
-
accuracy?: {
|
|
2018
|
-
source: string;
|
|
2019
|
-
threshold: number;
|
|
2020
|
-
} | undefined;
|
|
2021
|
-
} | undefined;
|
|
1742
|
+
readonly trackHistory?: boolean | undefined;
|
|
2022
1743
|
readonly visibleWhen?: {
|
|
2023
1744
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2024
1745
|
source?: string | undefined;
|
|
@@ -2057,7 +1778,6 @@ declare const SystemFile: Omit<{
|
|
|
2057
1778
|
} | undefined;
|
|
2058
1779
|
readonly sortable?: boolean | undefined;
|
|
2059
1780
|
readonly inlineHelpText?: string | undefined;
|
|
2060
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2061
1781
|
readonly caseSensitive?: boolean | undefined;
|
|
2062
1782
|
readonly autonumberFormat?: string | undefined;
|
|
2063
1783
|
readonly index?: boolean | undefined;
|
|
@@ -2079,7 +1799,6 @@ declare const SystemFile: Omit<{
|
|
|
2079
1799
|
readonly required?: boolean | undefined;
|
|
2080
1800
|
readonly multiple?: boolean | undefined;
|
|
2081
1801
|
readonly dependencies?: string[] | undefined;
|
|
2082
|
-
readonly theme?: string | undefined;
|
|
2083
1802
|
readonly externalId?: boolean | undefined;
|
|
2084
1803
|
readonly defaultValue?: unknown;
|
|
2085
1804
|
readonly group?: string | undefined;
|
|
@@ -2087,23 +1806,6 @@ declare const SystemFile: Omit<{
|
|
|
2087
1806
|
readonly system?: boolean | undefined;
|
|
2088
1807
|
readonly min?: number | undefined;
|
|
2089
1808
|
readonly max?: number | undefined;
|
|
2090
|
-
readonly encryptionConfig?: {
|
|
2091
|
-
enabled: boolean;
|
|
2092
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2093
|
-
keyManagement: {
|
|
2094
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2095
|
-
keyId?: string | undefined;
|
|
2096
|
-
rotationPolicy?: {
|
|
2097
|
-
enabled: boolean;
|
|
2098
|
-
frequencyDays: number;
|
|
2099
|
-
retainOldVersions: number;
|
|
2100
|
-
autoRotate: boolean;
|
|
2101
|
-
} | undefined;
|
|
2102
|
-
};
|
|
2103
|
-
scope: "record" | "field" | "table" | "database";
|
|
2104
|
-
deterministicEncryption: boolean;
|
|
2105
|
-
searchableEncryption: boolean;
|
|
2106
|
-
} | undefined;
|
|
2107
1809
|
readonly columnName?: string | undefined;
|
|
2108
1810
|
readonly searchable?: boolean | undefined;
|
|
2109
1811
|
readonly unique?: boolean | undefined;
|
|
@@ -2112,7 +1814,6 @@ declare const SystemFile: Omit<{
|
|
|
2112
1814
|
readonly scale?: number | undefined;
|
|
2113
1815
|
readonly reference?: string | undefined;
|
|
2114
1816
|
readonly referenceFilters?: string[] | undefined;
|
|
2115
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2116
1817
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2117
1818
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2118
1819
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2137,22 +1838,8 @@ declare const SystemFile: Omit<{
|
|
|
2137
1838
|
relationshipField?: string | undefined;
|
|
2138
1839
|
} | undefined;
|
|
2139
1840
|
readonly language?: string | undefined;
|
|
2140
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2141
1841
|
readonly maxRating?: number | undefined;
|
|
2142
|
-
readonly allowHalf?: boolean | undefined;
|
|
2143
|
-
readonly displayMap?: boolean | undefined;
|
|
2144
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2145
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2146
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2147
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2148
|
-
readonly presetColors?: string[] | undefined;
|
|
2149
1842
|
readonly step?: number | undefined;
|
|
2150
|
-
readonly showValue?: boolean | undefined;
|
|
2151
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2152
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2153
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2154
|
-
readonly displayValue?: boolean | undefined;
|
|
2155
|
-
readonly allowScanning?: boolean | undefined;
|
|
2156
1843
|
readonly currencyConfig?: {
|
|
2157
1844
|
precision: number;
|
|
2158
1845
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2206,29 +1893,7 @@ declare const SystemFile: Omit<{
|
|
|
2206
1893
|
} | undefined;
|
|
2207
1894
|
maxVersions?: number | undefined;
|
|
2208
1895
|
} | undefined;
|
|
2209
|
-
readonly
|
|
2210
|
-
field: string;
|
|
2211
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2212
|
-
preserveFormat: boolean;
|
|
2213
|
-
preserveLength: boolean;
|
|
2214
|
-
pattern?: string | undefined;
|
|
2215
|
-
roles?: string[] | undefined;
|
|
2216
|
-
exemptRoles?: string[] | undefined;
|
|
2217
|
-
} | undefined;
|
|
2218
|
-
readonly auditTrail?: boolean | undefined;
|
|
2219
|
-
readonly cached?: {
|
|
2220
|
-
enabled: boolean;
|
|
2221
|
-
ttl: number;
|
|
2222
|
-
invalidateOn: string[];
|
|
2223
|
-
} | undefined;
|
|
2224
|
-
readonly dataQuality?: {
|
|
2225
|
-
uniqueness: boolean;
|
|
2226
|
-
completeness: number;
|
|
2227
|
-
accuracy?: {
|
|
2228
|
-
source: string;
|
|
2229
|
-
threshold: number;
|
|
2230
|
-
} | undefined;
|
|
2231
|
-
} | undefined;
|
|
1896
|
+
readonly trackHistory?: boolean | undefined;
|
|
2232
1897
|
readonly visibleWhen?: {
|
|
2233
1898
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2234
1899
|
source?: string | undefined;
|
|
@@ -2267,7 +1932,6 @@ declare const SystemFile: Omit<{
|
|
|
2267
1932
|
} | undefined;
|
|
2268
1933
|
readonly sortable?: boolean | undefined;
|
|
2269
1934
|
readonly inlineHelpText?: string | undefined;
|
|
2270
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2271
1935
|
readonly caseSensitive?: boolean | undefined;
|
|
2272
1936
|
readonly autonumberFormat?: string | undefined;
|
|
2273
1937
|
readonly index?: boolean | undefined;
|
|
@@ -2289,7 +1953,6 @@ declare const SystemFile: Omit<{
|
|
|
2289
1953
|
readonly required?: boolean | undefined;
|
|
2290
1954
|
readonly multiple?: boolean | undefined;
|
|
2291
1955
|
readonly dependencies?: string[] | undefined;
|
|
2292
|
-
readonly theme?: string | undefined;
|
|
2293
1956
|
readonly externalId?: boolean | undefined;
|
|
2294
1957
|
readonly defaultValue?: unknown;
|
|
2295
1958
|
readonly group?: string | undefined;
|
|
@@ -2297,23 +1960,6 @@ declare const SystemFile: Omit<{
|
|
|
2297
1960
|
readonly system?: boolean | undefined;
|
|
2298
1961
|
readonly min?: number | undefined;
|
|
2299
1962
|
readonly max?: number | undefined;
|
|
2300
|
-
readonly encryptionConfig?: {
|
|
2301
|
-
enabled: boolean;
|
|
2302
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2303
|
-
keyManagement: {
|
|
2304
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2305
|
-
keyId?: string | undefined;
|
|
2306
|
-
rotationPolicy?: {
|
|
2307
|
-
enabled: boolean;
|
|
2308
|
-
frequencyDays: number;
|
|
2309
|
-
retainOldVersions: number;
|
|
2310
|
-
autoRotate: boolean;
|
|
2311
|
-
} | undefined;
|
|
2312
|
-
};
|
|
2313
|
-
scope: "record" | "field" | "table" | "database";
|
|
2314
|
-
deterministicEncryption: boolean;
|
|
2315
|
-
searchableEncryption: boolean;
|
|
2316
|
-
} | undefined;
|
|
2317
1963
|
readonly columnName?: string | undefined;
|
|
2318
1964
|
readonly searchable?: boolean | undefined;
|
|
2319
1965
|
readonly unique?: boolean | undefined;
|
|
@@ -2322,7 +1968,6 @@ declare const SystemFile: Omit<{
|
|
|
2322
1968
|
readonly scale?: number | undefined;
|
|
2323
1969
|
readonly reference?: string | undefined;
|
|
2324
1970
|
readonly referenceFilters?: string[] | undefined;
|
|
2325
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2326
1971
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2327
1972
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2328
1973
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2347,22 +1992,8 @@ declare const SystemFile: Omit<{
|
|
|
2347
1992
|
relationshipField?: string | undefined;
|
|
2348
1993
|
} | undefined;
|
|
2349
1994
|
readonly language?: string | undefined;
|
|
2350
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2351
1995
|
readonly maxRating?: number | undefined;
|
|
2352
|
-
readonly allowHalf?: boolean | undefined;
|
|
2353
|
-
readonly displayMap?: boolean | undefined;
|
|
2354
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2355
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2356
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2357
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2358
|
-
readonly presetColors?: string[] | undefined;
|
|
2359
1996
|
readonly step?: number | undefined;
|
|
2360
|
-
readonly showValue?: boolean | undefined;
|
|
2361
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2362
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2363
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2364
|
-
readonly displayValue?: boolean | undefined;
|
|
2365
|
-
readonly allowScanning?: boolean | undefined;
|
|
2366
1997
|
readonly currencyConfig?: {
|
|
2367
1998
|
precision: number;
|
|
2368
1999
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2416,29 +2047,7 @@ declare const SystemFile: Omit<{
|
|
|
2416
2047
|
} | undefined;
|
|
2417
2048
|
maxVersions?: number | undefined;
|
|
2418
2049
|
} | undefined;
|
|
2419
|
-
readonly
|
|
2420
|
-
field: string;
|
|
2421
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2422
|
-
preserveFormat: boolean;
|
|
2423
|
-
preserveLength: boolean;
|
|
2424
|
-
pattern?: string | undefined;
|
|
2425
|
-
roles?: string[] | undefined;
|
|
2426
|
-
exemptRoles?: string[] | undefined;
|
|
2427
|
-
} | undefined;
|
|
2428
|
-
readonly auditTrail?: boolean | undefined;
|
|
2429
|
-
readonly cached?: {
|
|
2430
|
-
enabled: boolean;
|
|
2431
|
-
ttl: number;
|
|
2432
|
-
invalidateOn: string[];
|
|
2433
|
-
} | undefined;
|
|
2434
|
-
readonly dataQuality?: {
|
|
2435
|
-
uniqueness: boolean;
|
|
2436
|
-
completeness: number;
|
|
2437
|
-
accuracy?: {
|
|
2438
|
-
source: string;
|
|
2439
|
-
threshold: number;
|
|
2440
|
-
} | undefined;
|
|
2441
|
-
} | undefined;
|
|
2050
|
+
readonly trackHistory?: boolean | undefined;
|
|
2442
2051
|
readonly visibleWhen?: {
|
|
2443
2052
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2444
2053
|
source?: string | undefined;
|
|
@@ -2477,7 +2086,6 @@ declare const SystemFile: Omit<{
|
|
|
2477
2086
|
} | undefined;
|
|
2478
2087
|
readonly sortable?: boolean | undefined;
|
|
2479
2088
|
readonly inlineHelpText?: string | undefined;
|
|
2480
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2481
2089
|
readonly caseSensitive?: boolean | undefined;
|
|
2482
2090
|
readonly autonumberFormat?: string | undefined;
|
|
2483
2091
|
readonly index?: boolean | undefined;
|
|
@@ -2499,7 +2107,6 @@ declare const SystemFile: Omit<{
|
|
|
2499
2107
|
readonly required?: boolean | undefined;
|
|
2500
2108
|
readonly multiple?: boolean | undefined;
|
|
2501
2109
|
readonly dependencies?: string[] | undefined;
|
|
2502
|
-
readonly theme?: string | undefined;
|
|
2503
2110
|
readonly externalId?: boolean | undefined;
|
|
2504
2111
|
readonly defaultValue?: unknown;
|
|
2505
2112
|
readonly group?: string | undefined;
|
|
@@ -2507,23 +2114,6 @@ declare const SystemFile: Omit<{
|
|
|
2507
2114
|
readonly system?: boolean | undefined;
|
|
2508
2115
|
readonly min?: number | undefined;
|
|
2509
2116
|
readonly max?: number | undefined;
|
|
2510
|
-
readonly encryptionConfig?: {
|
|
2511
|
-
enabled: boolean;
|
|
2512
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2513
|
-
keyManagement: {
|
|
2514
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2515
|
-
keyId?: string | undefined;
|
|
2516
|
-
rotationPolicy?: {
|
|
2517
|
-
enabled: boolean;
|
|
2518
|
-
frequencyDays: number;
|
|
2519
|
-
retainOldVersions: number;
|
|
2520
|
-
autoRotate: boolean;
|
|
2521
|
-
} | undefined;
|
|
2522
|
-
};
|
|
2523
|
-
scope: "record" | "field" | "table" | "database";
|
|
2524
|
-
deterministicEncryption: boolean;
|
|
2525
|
-
searchableEncryption: boolean;
|
|
2526
|
-
} | undefined;
|
|
2527
2117
|
readonly columnName?: string | undefined;
|
|
2528
2118
|
readonly searchable?: boolean | undefined;
|
|
2529
2119
|
readonly unique?: boolean | undefined;
|
|
@@ -2532,7 +2122,6 @@ declare const SystemFile: Omit<{
|
|
|
2532
2122
|
readonly scale?: number | undefined;
|
|
2533
2123
|
readonly reference?: string | undefined;
|
|
2534
2124
|
readonly referenceFilters?: string[] | undefined;
|
|
2535
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2536
2125
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2537
2126
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2538
2127
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2557,22 +2146,8 @@ declare const SystemFile: Omit<{
|
|
|
2557
2146
|
relationshipField?: string | undefined;
|
|
2558
2147
|
} | undefined;
|
|
2559
2148
|
readonly language?: string | undefined;
|
|
2560
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2561
2149
|
readonly maxRating?: number | undefined;
|
|
2562
|
-
readonly allowHalf?: boolean | undefined;
|
|
2563
|
-
readonly displayMap?: boolean | undefined;
|
|
2564
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2565
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2566
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2567
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2568
|
-
readonly presetColors?: string[] | undefined;
|
|
2569
2150
|
readonly step?: number | undefined;
|
|
2570
|
-
readonly showValue?: boolean | undefined;
|
|
2571
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2572
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2573
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2574
|
-
readonly displayValue?: boolean | undefined;
|
|
2575
|
-
readonly allowScanning?: boolean | undefined;
|
|
2576
2151
|
readonly currencyConfig?: {
|
|
2577
2152
|
precision: number;
|
|
2578
2153
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2626,29 +2201,7 @@ declare const SystemFile: Omit<{
|
|
|
2626
2201
|
} | undefined;
|
|
2627
2202
|
maxVersions?: number | undefined;
|
|
2628
2203
|
} | undefined;
|
|
2629
|
-
readonly
|
|
2630
|
-
field: string;
|
|
2631
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2632
|
-
preserveFormat: boolean;
|
|
2633
|
-
preserveLength: boolean;
|
|
2634
|
-
pattern?: string | undefined;
|
|
2635
|
-
roles?: string[] | undefined;
|
|
2636
|
-
exemptRoles?: string[] | undefined;
|
|
2637
|
-
} | undefined;
|
|
2638
|
-
readonly auditTrail?: boolean | undefined;
|
|
2639
|
-
readonly cached?: {
|
|
2640
|
-
enabled: boolean;
|
|
2641
|
-
ttl: number;
|
|
2642
|
-
invalidateOn: string[];
|
|
2643
|
-
} | undefined;
|
|
2644
|
-
readonly dataQuality?: {
|
|
2645
|
-
uniqueness: boolean;
|
|
2646
|
-
completeness: number;
|
|
2647
|
-
accuracy?: {
|
|
2648
|
-
source: string;
|
|
2649
|
-
threshold: number;
|
|
2650
|
-
} | undefined;
|
|
2651
|
-
} | undefined;
|
|
2204
|
+
readonly trackHistory?: boolean | undefined;
|
|
2652
2205
|
readonly visibleWhen?: {
|
|
2653
2206
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2654
2207
|
source?: string | undefined;
|
|
@@ -2687,7 +2240,6 @@ declare const SystemFile: Omit<{
|
|
|
2687
2240
|
} | undefined;
|
|
2688
2241
|
readonly sortable?: boolean | undefined;
|
|
2689
2242
|
readonly inlineHelpText?: string | undefined;
|
|
2690
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2691
2243
|
readonly caseSensitive?: boolean | undefined;
|
|
2692
2244
|
readonly autonumberFormat?: string | undefined;
|
|
2693
2245
|
readonly index?: boolean | undefined;
|
|
@@ -2709,7 +2261,6 @@ declare const SystemFile: Omit<{
|
|
|
2709
2261
|
readonly required?: boolean | undefined;
|
|
2710
2262
|
readonly multiple?: boolean | undefined;
|
|
2711
2263
|
readonly dependencies?: string[] | undefined;
|
|
2712
|
-
readonly theme?: string | undefined;
|
|
2713
2264
|
readonly externalId?: boolean | undefined;
|
|
2714
2265
|
readonly defaultValue?: unknown;
|
|
2715
2266
|
readonly group?: string | undefined;
|
|
@@ -2717,23 +2268,6 @@ declare const SystemFile: Omit<{
|
|
|
2717
2268
|
readonly system?: boolean | undefined;
|
|
2718
2269
|
readonly min?: number | undefined;
|
|
2719
2270
|
readonly max?: number | undefined;
|
|
2720
|
-
readonly encryptionConfig?: {
|
|
2721
|
-
enabled: boolean;
|
|
2722
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2723
|
-
keyManagement: {
|
|
2724
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2725
|
-
keyId?: string | undefined;
|
|
2726
|
-
rotationPolicy?: {
|
|
2727
|
-
enabled: boolean;
|
|
2728
|
-
frequencyDays: number;
|
|
2729
|
-
retainOldVersions: number;
|
|
2730
|
-
autoRotate: boolean;
|
|
2731
|
-
} | undefined;
|
|
2732
|
-
};
|
|
2733
|
-
scope: "record" | "field" | "table" | "database";
|
|
2734
|
-
deterministicEncryption: boolean;
|
|
2735
|
-
searchableEncryption: boolean;
|
|
2736
|
-
} | undefined;
|
|
2737
2271
|
readonly columnName?: string | undefined;
|
|
2738
2272
|
readonly searchable?: boolean | undefined;
|
|
2739
2273
|
readonly unique?: boolean | undefined;
|
|
@@ -2742,7 +2276,6 @@ declare const SystemFile: Omit<{
|
|
|
2742
2276
|
readonly scale?: number | undefined;
|
|
2743
2277
|
readonly reference?: string | undefined;
|
|
2744
2278
|
readonly referenceFilters?: string[] | undefined;
|
|
2745
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2746
2279
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2747
2280
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2748
2281
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2767,22 +2300,8 @@ declare const SystemFile: Omit<{
|
|
|
2767
2300
|
relationshipField?: string | undefined;
|
|
2768
2301
|
} | undefined;
|
|
2769
2302
|
readonly language?: string | undefined;
|
|
2770
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2771
2303
|
readonly maxRating?: number | undefined;
|
|
2772
|
-
readonly allowHalf?: boolean | undefined;
|
|
2773
|
-
readonly displayMap?: boolean | undefined;
|
|
2774
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2775
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2776
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2777
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2778
|
-
readonly presetColors?: string[] | undefined;
|
|
2779
2304
|
readonly step?: number | undefined;
|
|
2780
|
-
readonly showValue?: boolean | undefined;
|
|
2781
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2782
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2783
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2784
|
-
readonly displayValue?: boolean | undefined;
|
|
2785
|
-
readonly allowScanning?: boolean | undefined;
|
|
2786
2305
|
readonly currencyConfig?: {
|
|
2787
2306
|
precision: number;
|
|
2788
2307
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2836,29 +2355,7 @@ declare const SystemFile: Omit<{
|
|
|
2836
2355
|
} | undefined;
|
|
2837
2356
|
maxVersions?: number | undefined;
|
|
2838
2357
|
} | undefined;
|
|
2839
|
-
readonly
|
|
2840
|
-
field: string;
|
|
2841
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
2842
|
-
preserveFormat: boolean;
|
|
2843
|
-
preserveLength: boolean;
|
|
2844
|
-
pattern?: string | undefined;
|
|
2845
|
-
roles?: string[] | undefined;
|
|
2846
|
-
exemptRoles?: string[] | undefined;
|
|
2847
|
-
} | undefined;
|
|
2848
|
-
readonly auditTrail?: boolean | undefined;
|
|
2849
|
-
readonly cached?: {
|
|
2850
|
-
enabled: boolean;
|
|
2851
|
-
ttl: number;
|
|
2852
|
-
invalidateOn: string[];
|
|
2853
|
-
} | undefined;
|
|
2854
|
-
readonly dataQuality?: {
|
|
2855
|
-
uniqueness: boolean;
|
|
2856
|
-
completeness: number;
|
|
2857
|
-
accuracy?: {
|
|
2858
|
-
source: string;
|
|
2859
|
-
threshold: number;
|
|
2860
|
-
} | undefined;
|
|
2861
|
-
} | undefined;
|
|
2358
|
+
readonly trackHistory?: boolean | undefined;
|
|
2862
2359
|
readonly visibleWhen?: {
|
|
2863
2360
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2864
2361
|
source?: string | undefined;
|
|
@@ -2897,7 +2394,6 @@ declare const SystemFile: Omit<{
|
|
|
2897
2394
|
} | undefined;
|
|
2898
2395
|
readonly sortable?: boolean | undefined;
|
|
2899
2396
|
readonly inlineHelpText?: string | undefined;
|
|
2900
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2901
2397
|
readonly caseSensitive?: boolean | undefined;
|
|
2902
2398
|
readonly autonumberFormat?: string | undefined;
|
|
2903
2399
|
readonly index?: boolean | undefined;
|
|
@@ -2919,7 +2415,6 @@ declare const SystemFile: Omit<{
|
|
|
2919
2415
|
readonly required?: boolean | undefined;
|
|
2920
2416
|
readonly multiple?: boolean | undefined;
|
|
2921
2417
|
readonly dependencies?: string[] | undefined;
|
|
2922
|
-
readonly theme?: string | undefined;
|
|
2923
2418
|
readonly externalId?: boolean | undefined;
|
|
2924
2419
|
readonly defaultValue?: unknown;
|
|
2925
2420
|
readonly group?: string | undefined;
|
|
@@ -2927,23 +2422,6 @@ declare const SystemFile: Omit<{
|
|
|
2927
2422
|
readonly system?: boolean | undefined;
|
|
2928
2423
|
readonly min?: number | undefined;
|
|
2929
2424
|
readonly max?: number | undefined;
|
|
2930
|
-
readonly encryptionConfig?: {
|
|
2931
|
-
enabled: boolean;
|
|
2932
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
2933
|
-
keyManagement: {
|
|
2934
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
2935
|
-
keyId?: string | undefined;
|
|
2936
|
-
rotationPolicy?: {
|
|
2937
|
-
enabled: boolean;
|
|
2938
|
-
frequencyDays: number;
|
|
2939
|
-
retainOldVersions: number;
|
|
2940
|
-
autoRotate: boolean;
|
|
2941
|
-
} | undefined;
|
|
2942
|
-
};
|
|
2943
|
-
scope: "record" | "field" | "table" | "database";
|
|
2944
|
-
deterministicEncryption: boolean;
|
|
2945
|
-
searchableEncryption: boolean;
|
|
2946
|
-
} | undefined;
|
|
2947
2425
|
readonly columnName?: string | undefined;
|
|
2948
2426
|
readonly searchable?: boolean | undefined;
|
|
2949
2427
|
readonly unique?: boolean | undefined;
|
|
@@ -2952,7 +2430,6 @@ declare const SystemFile: Omit<{
|
|
|
2952
2430
|
readonly scale?: number | undefined;
|
|
2953
2431
|
readonly reference?: string | undefined;
|
|
2954
2432
|
readonly referenceFilters?: string[] | undefined;
|
|
2955
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2956
2433
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2957
2434
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2958
2435
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2977,22 +2454,8 @@ declare const SystemFile: Omit<{
|
|
|
2977
2454
|
relationshipField?: string | undefined;
|
|
2978
2455
|
} | undefined;
|
|
2979
2456
|
readonly language?: string | undefined;
|
|
2980
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2981
2457
|
readonly maxRating?: number | undefined;
|
|
2982
|
-
readonly allowHalf?: boolean | undefined;
|
|
2983
|
-
readonly displayMap?: boolean | undefined;
|
|
2984
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
2985
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
2986
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
2987
|
-
readonly allowAlpha?: boolean | undefined;
|
|
2988
|
-
readonly presetColors?: string[] | undefined;
|
|
2989
2458
|
readonly step?: number | undefined;
|
|
2990
|
-
readonly showValue?: boolean | undefined;
|
|
2991
|
-
readonly marks?: Record<string, string> | undefined;
|
|
2992
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
2993
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
2994
|
-
readonly displayValue?: boolean | undefined;
|
|
2995
|
-
readonly allowScanning?: boolean | undefined;
|
|
2996
2459
|
readonly currencyConfig?: {
|
|
2997
2460
|
precision: number;
|
|
2998
2461
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3046,29 +2509,7 @@ declare const SystemFile: Omit<{
|
|
|
3046
2509
|
} | undefined;
|
|
3047
2510
|
maxVersions?: number | undefined;
|
|
3048
2511
|
} | undefined;
|
|
3049
|
-
readonly
|
|
3050
|
-
field: string;
|
|
3051
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3052
|
-
preserveFormat: boolean;
|
|
3053
|
-
preserveLength: boolean;
|
|
3054
|
-
pattern?: string | undefined;
|
|
3055
|
-
roles?: string[] | undefined;
|
|
3056
|
-
exemptRoles?: string[] | undefined;
|
|
3057
|
-
} | undefined;
|
|
3058
|
-
readonly auditTrail?: boolean | undefined;
|
|
3059
|
-
readonly cached?: {
|
|
3060
|
-
enabled: boolean;
|
|
3061
|
-
ttl: number;
|
|
3062
|
-
invalidateOn: string[];
|
|
3063
|
-
} | undefined;
|
|
3064
|
-
readonly dataQuality?: {
|
|
3065
|
-
uniqueness: boolean;
|
|
3066
|
-
completeness: number;
|
|
3067
|
-
accuracy?: {
|
|
3068
|
-
source: string;
|
|
3069
|
-
threshold: number;
|
|
3070
|
-
} | undefined;
|
|
3071
|
-
} | undefined;
|
|
2512
|
+
readonly trackHistory?: boolean | undefined;
|
|
3072
2513
|
readonly visibleWhen?: {
|
|
3073
2514
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3074
2515
|
source?: string | undefined;
|
|
@@ -3107,7 +2548,6 @@ declare const SystemFile: Omit<{
|
|
|
3107
2548
|
} | undefined;
|
|
3108
2549
|
readonly sortable?: boolean | undefined;
|
|
3109
2550
|
readonly inlineHelpText?: string | undefined;
|
|
3110
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3111
2551
|
readonly caseSensitive?: boolean | undefined;
|
|
3112
2552
|
readonly autonumberFormat?: string | undefined;
|
|
3113
2553
|
readonly index?: boolean | undefined;
|
|
@@ -3129,7 +2569,6 @@ declare const SystemFile: Omit<{
|
|
|
3129
2569
|
readonly required?: boolean | undefined;
|
|
3130
2570
|
readonly multiple?: boolean | undefined;
|
|
3131
2571
|
readonly dependencies?: string[] | undefined;
|
|
3132
|
-
readonly theme?: string | undefined;
|
|
3133
2572
|
readonly externalId?: boolean | undefined;
|
|
3134
2573
|
readonly defaultValue?: unknown;
|
|
3135
2574
|
readonly group?: string | undefined;
|
|
@@ -3137,23 +2576,6 @@ declare const SystemFile: Omit<{
|
|
|
3137
2576
|
readonly system?: boolean | undefined;
|
|
3138
2577
|
readonly min?: number | undefined;
|
|
3139
2578
|
readonly max?: number | undefined;
|
|
3140
|
-
readonly encryptionConfig?: {
|
|
3141
|
-
enabled: boolean;
|
|
3142
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3143
|
-
keyManagement: {
|
|
3144
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3145
|
-
keyId?: string | undefined;
|
|
3146
|
-
rotationPolicy?: {
|
|
3147
|
-
enabled: boolean;
|
|
3148
|
-
frequencyDays: number;
|
|
3149
|
-
retainOldVersions: number;
|
|
3150
|
-
autoRotate: boolean;
|
|
3151
|
-
} | undefined;
|
|
3152
|
-
};
|
|
3153
|
-
scope: "record" | "field" | "table" | "database";
|
|
3154
|
-
deterministicEncryption: boolean;
|
|
3155
|
-
searchableEncryption: boolean;
|
|
3156
|
-
} | undefined;
|
|
3157
2579
|
readonly columnName?: string | undefined;
|
|
3158
2580
|
readonly searchable?: boolean | undefined;
|
|
3159
2581
|
readonly unique?: boolean | undefined;
|
|
@@ -3162,7 +2584,6 @@ declare const SystemFile: Omit<{
|
|
|
3162
2584
|
readonly scale?: number | undefined;
|
|
3163
2585
|
readonly reference?: string | undefined;
|
|
3164
2586
|
readonly referenceFilters?: string[] | undefined;
|
|
3165
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3166
2587
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3167
2588
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3168
2589
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3187,22 +2608,8 @@ declare const SystemFile: Omit<{
|
|
|
3187
2608
|
relationshipField?: string | undefined;
|
|
3188
2609
|
} | undefined;
|
|
3189
2610
|
readonly language?: string | undefined;
|
|
3190
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3191
2611
|
readonly maxRating?: number | undefined;
|
|
3192
|
-
readonly allowHalf?: boolean | undefined;
|
|
3193
|
-
readonly displayMap?: boolean | undefined;
|
|
3194
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
3195
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3196
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3197
|
-
readonly allowAlpha?: boolean | undefined;
|
|
3198
|
-
readonly presetColors?: string[] | undefined;
|
|
3199
2612
|
readonly step?: number | undefined;
|
|
3200
|
-
readonly showValue?: boolean | undefined;
|
|
3201
|
-
readonly marks?: Record<string, string> | undefined;
|
|
3202
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3203
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3204
|
-
readonly displayValue?: boolean | undefined;
|
|
3205
|
-
readonly allowScanning?: boolean | undefined;
|
|
3206
2613
|
readonly currencyConfig?: {
|
|
3207
2614
|
precision: number;
|
|
3208
2615
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3256,29 +2663,7 @@ declare const SystemFile: Omit<{
|
|
|
3256
2663
|
} | undefined;
|
|
3257
2664
|
maxVersions?: number | undefined;
|
|
3258
2665
|
} | undefined;
|
|
3259
|
-
readonly
|
|
3260
|
-
field: string;
|
|
3261
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3262
|
-
preserveFormat: boolean;
|
|
3263
|
-
preserveLength: boolean;
|
|
3264
|
-
pattern?: string | undefined;
|
|
3265
|
-
roles?: string[] | undefined;
|
|
3266
|
-
exemptRoles?: string[] | undefined;
|
|
3267
|
-
} | undefined;
|
|
3268
|
-
readonly auditTrail?: boolean | undefined;
|
|
3269
|
-
readonly cached?: {
|
|
3270
|
-
enabled: boolean;
|
|
3271
|
-
ttl: number;
|
|
3272
|
-
invalidateOn: string[];
|
|
3273
|
-
} | undefined;
|
|
3274
|
-
readonly dataQuality?: {
|
|
3275
|
-
uniqueness: boolean;
|
|
3276
|
-
completeness: number;
|
|
3277
|
-
accuracy?: {
|
|
3278
|
-
source: string;
|
|
3279
|
-
threshold: number;
|
|
3280
|
-
} | undefined;
|
|
3281
|
-
} | undefined;
|
|
2666
|
+
readonly trackHistory?: boolean | undefined;
|
|
3282
2667
|
readonly visibleWhen?: {
|
|
3283
2668
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3284
2669
|
source?: string | undefined;
|
|
@@ -3317,7 +2702,6 @@ declare const SystemFile: Omit<{
|
|
|
3317
2702
|
} | undefined;
|
|
3318
2703
|
readonly sortable?: boolean | undefined;
|
|
3319
2704
|
readonly inlineHelpText?: string | undefined;
|
|
3320
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3321
2705
|
readonly caseSensitive?: boolean | undefined;
|
|
3322
2706
|
readonly autonumberFormat?: string | undefined;
|
|
3323
2707
|
readonly index?: boolean | undefined;
|
|
@@ -3339,7 +2723,6 @@ declare const SystemFile: Omit<{
|
|
|
3339
2723
|
readonly required?: boolean | undefined;
|
|
3340
2724
|
readonly multiple?: boolean | undefined;
|
|
3341
2725
|
readonly dependencies?: string[] | undefined;
|
|
3342
|
-
readonly theme?: string | undefined;
|
|
3343
2726
|
readonly externalId?: boolean | undefined;
|
|
3344
2727
|
readonly defaultValue?: unknown;
|
|
3345
2728
|
readonly group?: string | undefined;
|
|
@@ -3347,23 +2730,6 @@ declare const SystemFile: Omit<{
|
|
|
3347
2730
|
readonly system?: boolean | undefined;
|
|
3348
2731
|
readonly min?: number | undefined;
|
|
3349
2732
|
readonly max?: number | undefined;
|
|
3350
|
-
readonly encryptionConfig?: {
|
|
3351
|
-
enabled: boolean;
|
|
3352
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3353
|
-
keyManagement: {
|
|
3354
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3355
|
-
keyId?: string | undefined;
|
|
3356
|
-
rotationPolicy?: {
|
|
3357
|
-
enabled: boolean;
|
|
3358
|
-
frequencyDays: number;
|
|
3359
|
-
retainOldVersions: number;
|
|
3360
|
-
autoRotate: boolean;
|
|
3361
|
-
} | undefined;
|
|
3362
|
-
};
|
|
3363
|
-
scope: "record" | "field" | "table" | "database";
|
|
3364
|
-
deterministicEncryption: boolean;
|
|
3365
|
-
searchableEncryption: boolean;
|
|
3366
|
-
} | undefined;
|
|
3367
2733
|
readonly columnName?: string | undefined;
|
|
3368
2734
|
readonly searchable?: boolean | undefined;
|
|
3369
2735
|
readonly unique?: boolean | undefined;
|
|
@@ -3372,7 +2738,6 @@ declare const SystemFile: Omit<{
|
|
|
3372
2738
|
readonly scale?: number | undefined;
|
|
3373
2739
|
readonly reference?: string | undefined;
|
|
3374
2740
|
readonly referenceFilters?: string[] | undefined;
|
|
3375
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3376
2741
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3377
2742
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3378
2743
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3397,22 +2762,8 @@ declare const SystemFile: Omit<{
|
|
|
3397
2762
|
relationshipField?: string | undefined;
|
|
3398
2763
|
} | undefined;
|
|
3399
2764
|
readonly language?: string | undefined;
|
|
3400
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3401
2765
|
readonly maxRating?: number | undefined;
|
|
3402
|
-
readonly allowHalf?: boolean | undefined;
|
|
3403
|
-
readonly displayMap?: boolean | undefined;
|
|
3404
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
3405
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3406
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3407
|
-
readonly allowAlpha?: boolean | undefined;
|
|
3408
|
-
readonly presetColors?: string[] | undefined;
|
|
3409
2766
|
readonly step?: number | undefined;
|
|
3410
|
-
readonly showValue?: boolean | undefined;
|
|
3411
|
-
readonly marks?: Record<string, string> | undefined;
|
|
3412
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3413
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3414
|
-
readonly displayValue?: boolean | undefined;
|
|
3415
|
-
readonly allowScanning?: boolean | undefined;
|
|
3416
2767
|
readonly currencyConfig?: {
|
|
3417
2768
|
precision: number;
|
|
3418
2769
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3466,29 +2817,7 @@ declare const SystemFile: Omit<{
|
|
|
3466
2817
|
} | undefined;
|
|
3467
2818
|
maxVersions?: number | undefined;
|
|
3468
2819
|
} | undefined;
|
|
3469
|
-
readonly
|
|
3470
|
-
field: string;
|
|
3471
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3472
|
-
preserveFormat: boolean;
|
|
3473
|
-
preserveLength: boolean;
|
|
3474
|
-
pattern?: string | undefined;
|
|
3475
|
-
roles?: string[] | undefined;
|
|
3476
|
-
exemptRoles?: string[] | undefined;
|
|
3477
|
-
} | undefined;
|
|
3478
|
-
readonly auditTrail?: boolean | undefined;
|
|
3479
|
-
readonly cached?: {
|
|
3480
|
-
enabled: boolean;
|
|
3481
|
-
ttl: number;
|
|
3482
|
-
invalidateOn: string[];
|
|
3483
|
-
} | undefined;
|
|
3484
|
-
readonly dataQuality?: {
|
|
3485
|
-
uniqueness: boolean;
|
|
3486
|
-
completeness: number;
|
|
3487
|
-
accuracy?: {
|
|
3488
|
-
source: string;
|
|
3489
|
-
threshold: number;
|
|
3490
|
-
} | undefined;
|
|
3491
|
-
} | undefined;
|
|
2820
|
+
readonly trackHistory?: boolean | undefined;
|
|
3492
2821
|
readonly visibleWhen?: {
|
|
3493
2822
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3494
2823
|
source?: string | undefined;
|
|
@@ -3527,7 +2856,6 @@ declare const SystemFile: Omit<{
|
|
|
3527
2856
|
} | undefined;
|
|
3528
2857
|
readonly sortable?: boolean | undefined;
|
|
3529
2858
|
readonly inlineHelpText?: string | undefined;
|
|
3530
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3531
2859
|
readonly caseSensitive?: boolean | undefined;
|
|
3532
2860
|
readonly autonumberFormat?: string | undefined;
|
|
3533
2861
|
readonly index?: boolean | undefined;
|
|
@@ -3549,7 +2877,6 @@ declare const SystemFile: Omit<{
|
|
|
3549
2877
|
readonly required?: boolean | undefined;
|
|
3550
2878
|
readonly multiple?: boolean | undefined;
|
|
3551
2879
|
readonly dependencies?: string[] | undefined;
|
|
3552
|
-
readonly theme?: string | undefined;
|
|
3553
2880
|
readonly externalId?: boolean | undefined;
|
|
3554
2881
|
readonly defaultValue?: unknown;
|
|
3555
2882
|
readonly group?: string | undefined;
|
|
@@ -3557,23 +2884,6 @@ declare const SystemFile: Omit<{
|
|
|
3557
2884
|
readonly system?: boolean | undefined;
|
|
3558
2885
|
readonly min?: number | undefined;
|
|
3559
2886
|
readonly max?: number | undefined;
|
|
3560
|
-
readonly encryptionConfig?: {
|
|
3561
|
-
enabled: boolean;
|
|
3562
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3563
|
-
keyManagement: {
|
|
3564
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3565
|
-
keyId?: string | undefined;
|
|
3566
|
-
rotationPolicy?: {
|
|
3567
|
-
enabled: boolean;
|
|
3568
|
-
frequencyDays: number;
|
|
3569
|
-
retainOldVersions: number;
|
|
3570
|
-
autoRotate: boolean;
|
|
3571
|
-
} | undefined;
|
|
3572
|
-
};
|
|
3573
|
-
scope: "record" | "field" | "table" | "database";
|
|
3574
|
-
deterministicEncryption: boolean;
|
|
3575
|
-
searchableEncryption: boolean;
|
|
3576
|
-
} | undefined;
|
|
3577
2887
|
readonly columnName?: string | undefined;
|
|
3578
2888
|
readonly searchable?: boolean | undefined;
|
|
3579
2889
|
readonly unique?: boolean | undefined;
|
|
@@ -3582,7 +2892,6 @@ declare const SystemFile: Omit<{
|
|
|
3582
2892
|
readonly scale?: number | undefined;
|
|
3583
2893
|
readonly reference?: string | undefined;
|
|
3584
2894
|
readonly referenceFilters?: string[] | undefined;
|
|
3585
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3586
2895
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3587
2896
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3588
2897
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3607,22 +2916,8 @@ declare const SystemFile: Omit<{
|
|
|
3607
2916
|
relationshipField?: string | undefined;
|
|
3608
2917
|
} | undefined;
|
|
3609
2918
|
readonly language?: string | undefined;
|
|
3610
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3611
2919
|
readonly maxRating?: number | undefined;
|
|
3612
|
-
readonly allowHalf?: boolean | undefined;
|
|
3613
|
-
readonly displayMap?: boolean | undefined;
|
|
3614
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
3615
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3616
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3617
|
-
readonly allowAlpha?: boolean | undefined;
|
|
3618
|
-
readonly presetColors?: string[] | undefined;
|
|
3619
2920
|
readonly step?: number | undefined;
|
|
3620
|
-
readonly showValue?: boolean | undefined;
|
|
3621
|
-
readonly marks?: Record<string, string> | undefined;
|
|
3622
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3623
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3624
|
-
readonly displayValue?: boolean | undefined;
|
|
3625
|
-
readonly allowScanning?: boolean | undefined;
|
|
3626
2921
|
readonly currencyConfig?: {
|
|
3627
2922
|
precision: number;
|
|
3628
2923
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3676,29 +2971,7 @@ declare const SystemFile: Omit<{
|
|
|
3676
2971
|
} | undefined;
|
|
3677
2972
|
maxVersions?: number | undefined;
|
|
3678
2973
|
} | undefined;
|
|
3679
|
-
readonly
|
|
3680
|
-
field: string;
|
|
3681
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3682
|
-
preserveFormat: boolean;
|
|
3683
|
-
preserveLength: boolean;
|
|
3684
|
-
pattern?: string | undefined;
|
|
3685
|
-
roles?: string[] | undefined;
|
|
3686
|
-
exemptRoles?: string[] | undefined;
|
|
3687
|
-
} | undefined;
|
|
3688
|
-
readonly auditTrail?: boolean | undefined;
|
|
3689
|
-
readonly cached?: {
|
|
3690
|
-
enabled: boolean;
|
|
3691
|
-
ttl: number;
|
|
3692
|
-
invalidateOn: string[];
|
|
3693
|
-
} | undefined;
|
|
3694
|
-
readonly dataQuality?: {
|
|
3695
|
-
uniqueness: boolean;
|
|
3696
|
-
completeness: number;
|
|
3697
|
-
accuracy?: {
|
|
3698
|
-
source: string;
|
|
3699
|
-
threshold: number;
|
|
3700
|
-
} | undefined;
|
|
3701
|
-
} | undefined;
|
|
2974
|
+
readonly trackHistory?: boolean | undefined;
|
|
3702
2975
|
readonly visibleWhen?: {
|
|
3703
2976
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3704
2977
|
source?: string | undefined;
|
|
@@ -3737,7 +3010,6 @@ declare const SystemFile: Omit<{
|
|
|
3737
3010
|
} | undefined;
|
|
3738
3011
|
readonly sortable?: boolean | undefined;
|
|
3739
3012
|
readonly inlineHelpText?: string | undefined;
|
|
3740
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3741
3013
|
readonly caseSensitive?: boolean | undefined;
|
|
3742
3014
|
readonly autonumberFormat?: string | undefined;
|
|
3743
3015
|
readonly index?: boolean | undefined;
|
|
@@ -3759,7 +3031,6 @@ declare const SystemFile: Omit<{
|
|
|
3759
3031
|
readonly required?: boolean | undefined;
|
|
3760
3032
|
readonly multiple?: boolean | undefined;
|
|
3761
3033
|
readonly dependencies?: string[] | undefined;
|
|
3762
|
-
readonly theme?: string | undefined;
|
|
3763
3034
|
readonly externalId?: boolean | undefined;
|
|
3764
3035
|
readonly defaultValue?: unknown;
|
|
3765
3036
|
readonly group?: string | undefined;
|
|
@@ -3767,23 +3038,6 @@ declare const SystemFile: Omit<{
|
|
|
3767
3038
|
readonly system?: boolean | undefined;
|
|
3768
3039
|
readonly min?: number | undefined;
|
|
3769
3040
|
readonly max?: number | undefined;
|
|
3770
|
-
readonly encryptionConfig?: {
|
|
3771
|
-
enabled: boolean;
|
|
3772
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3773
|
-
keyManagement: {
|
|
3774
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3775
|
-
keyId?: string | undefined;
|
|
3776
|
-
rotationPolicy?: {
|
|
3777
|
-
enabled: boolean;
|
|
3778
|
-
frequencyDays: number;
|
|
3779
|
-
retainOldVersions: number;
|
|
3780
|
-
autoRotate: boolean;
|
|
3781
|
-
} | undefined;
|
|
3782
|
-
};
|
|
3783
|
-
scope: "record" | "field" | "table" | "database";
|
|
3784
|
-
deterministicEncryption: boolean;
|
|
3785
|
-
searchableEncryption: boolean;
|
|
3786
|
-
} | undefined;
|
|
3787
3041
|
readonly columnName?: string | undefined;
|
|
3788
3042
|
readonly searchable?: boolean | undefined;
|
|
3789
3043
|
readonly unique?: boolean | undefined;
|
|
@@ -3792,7 +3046,6 @@ declare const SystemFile: Omit<{
|
|
|
3792
3046
|
readonly scale?: number | undefined;
|
|
3793
3047
|
readonly reference?: string | undefined;
|
|
3794
3048
|
readonly referenceFilters?: string[] | undefined;
|
|
3795
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3796
3049
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3797
3050
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3798
3051
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3817,22 +3070,8 @@ declare const SystemFile: Omit<{
|
|
|
3817
3070
|
relationshipField?: string | undefined;
|
|
3818
3071
|
} | undefined;
|
|
3819
3072
|
readonly language?: string | undefined;
|
|
3820
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3821
3073
|
readonly maxRating?: number | undefined;
|
|
3822
|
-
readonly allowHalf?: boolean | undefined;
|
|
3823
|
-
readonly displayMap?: boolean | undefined;
|
|
3824
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
3825
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
3826
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
3827
|
-
readonly allowAlpha?: boolean | undefined;
|
|
3828
|
-
readonly presetColors?: string[] | undefined;
|
|
3829
3074
|
readonly step?: number | undefined;
|
|
3830
|
-
readonly showValue?: boolean | undefined;
|
|
3831
|
-
readonly marks?: Record<string, string> | undefined;
|
|
3832
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
3833
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
3834
|
-
readonly displayValue?: boolean | undefined;
|
|
3835
|
-
readonly allowScanning?: boolean | undefined;
|
|
3836
3075
|
readonly currencyConfig?: {
|
|
3837
3076
|
precision: number;
|
|
3838
3077
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3886,29 +3125,7 @@ declare const SystemFile: Omit<{
|
|
|
3886
3125
|
} | undefined;
|
|
3887
3126
|
maxVersions?: number | undefined;
|
|
3888
3127
|
} | undefined;
|
|
3889
|
-
readonly
|
|
3890
|
-
field: string;
|
|
3891
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
3892
|
-
preserveFormat: boolean;
|
|
3893
|
-
preserveLength: boolean;
|
|
3894
|
-
pattern?: string | undefined;
|
|
3895
|
-
roles?: string[] | undefined;
|
|
3896
|
-
exemptRoles?: string[] | undefined;
|
|
3897
|
-
} | undefined;
|
|
3898
|
-
readonly auditTrail?: boolean | undefined;
|
|
3899
|
-
readonly cached?: {
|
|
3900
|
-
enabled: boolean;
|
|
3901
|
-
ttl: number;
|
|
3902
|
-
invalidateOn: string[];
|
|
3903
|
-
} | undefined;
|
|
3904
|
-
readonly dataQuality?: {
|
|
3905
|
-
uniqueness: boolean;
|
|
3906
|
-
completeness: number;
|
|
3907
|
-
accuracy?: {
|
|
3908
|
-
source: string;
|
|
3909
|
-
threshold: number;
|
|
3910
|
-
} | undefined;
|
|
3911
|
-
} | undefined;
|
|
3128
|
+
readonly trackHistory?: boolean | undefined;
|
|
3912
3129
|
readonly visibleWhen?: {
|
|
3913
3130
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3914
3131
|
source?: string | undefined;
|
|
@@ -3947,7 +3164,6 @@ declare const SystemFile: Omit<{
|
|
|
3947
3164
|
} | undefined;
|
|
3948
3165
|
readonly sortable?: boolean | undefined;
|
|
3949
3166
|
readonly inlineHelpText?: string | undefined;
|
|
3950
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3951
3167
|
readonly caseSensitive?: boolean | undefined;
|
|
3952
3168
|
readonly autonumberFormat?: string | undefined;
|
|
3953
3169
|
readonly index?: boolean | undefined;
|
|
@@ -3969,7 +3185,6 @@ declare const SystemFile: Omit<{
|
|
|
3969
3185
|
readonly required?: boolean | undefined;
|
|
3970
3186
|
readonly multiple?: boolean | undefined;
|
|
3971
3187
|
readonly dependencies?: string[] | undefined;
|
|
3972
|
-
readonly theme?: string | undefined;
|
|
3973
3188
|
readonly externalId?: boolean | undefined;
|
|
3974
3189
|
readonly defaultValue?: unknown;
|
|
3975
3190
|
readonly group?: string | undefined;
|
|
@@ -3977,23 +3192,6 @@ declare const SystemFile: Omit<{
|
|
|
3977
3192
|
readonly system?: boolean | undefined;
|
|
3978
3193
|
readonly min?: number | undefined;
|
|
3979
3194
|
readonly max?: number | undefined;
|
|
3980
|
-
readonly encryptionConfig?: {
|
|
3981
|
-
enabled: boolean;
|
|
3982
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
3983
|
-
keyManagement: {
|
|
3984
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
3985
|
-
keyId?: string | undefined;
|
|
3986
|
-
rotationPolicy?: {
|
|
3987
|
-
enabled: boolean;
|
|
3988
|
-
frequencyDays: number;
|
|
3989
|
-
retainOldVersions: number;
|
|
3990
|
-
autoRotate: boolean;
|
|
3991
|
-
} | undefined;
|
|
3992
|
-
};
|
|
3993
|
-
scope: "record" | "field" | "table" | "database";
|
|
3994
|
-
deterministicEncryption: boolean;
|
|
3995
|
-
searchableEncryption: boolean;
|
|
3996
|
-
} | undefined;
|
|
3997
3195
|
readonly columnName?: string | undefined;
|
|
3998
3196
|
readonly searchable?: boolean | undefined;
|
|
3999
3197
|
readonly unique?: boolean | undefined;
|
|
@@ -4002,7 +3200,6 @@ declare const SystemFile: Omit<{
|
|
|
4002
3200
|
readonly scale?: number | undefined;
|
|
4003
3201
|
readonly reference?: string | undefined;
|
|
4004
3202
|
readonly referenceFilters?: string[] | undefined;
|
|
4005
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4006
3203
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4007
3204
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4008
3205
|
readonly inlineTitle?: string | undefined;
|
|
@@ -4027,22 +3224,8 @@ declare const SystemFile: Omit<{
|
|
|
4027
3224
|
relationshipField?: string | undefined;
|
|
4028
3225
|
} | undefined;
|
|
4029
3226
|
readonly language?: string | undefined;
|
|
4030
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4031
3227
|
readonly maxRating?: number | undefined;
|
|
4032
|
-
readonly allowHalf?: boolean | undefined;
|
|
4033
|
-
readonly displayMap?: boolean | undefined;
|
|
4034
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
4035
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
4036
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
4037
|
-
readonly allowAlpha?: boolean | undefined;
|
|
4038
|
-
readonly presetColors?: string[] | undefined;
|
|
4039
3228
|
readonly step?: number | undefined;
|
|
4040
|
-
readonly showValue?: boolean | undefined;
|
|
4041
|
-
readonly marks?: Record<string, string> | undefined;
|
|
4042
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
4043
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
4044
|
-
readonly displayValue?: boolean | undefined;
|
|
4045
|
-
readonly allowScanning?: boolean | undefined;
|
|
4046
3229
|
readonly currencyConfig?: {
|
|
4047
3230
|
precision: number;
|
|
4048
3231
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -4096,29 +3279,7 @@ declare const SystemFile: Omit<{
|
|
|
4096
3279
|
} | undefined;
|
|
4097
3280
|
maxVersions?: number | undefined;
|
|
4098
3281
|
} | undefined;
|
|
4099
|
-
readonly
|
|
4100
|
-
field: string;
|
|
4101
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
4102
|
-
preserveFormat: boolean;
|
|
4103
|
-
preserveLength: boolean;
|
|
4104
|
-
pattern?: string | undefined;
|
|
4105
|
-
roles?: string[] | undefined;
|
|
4106
|
-
exemptRoles?: string[] | undefined;
|
|
4107
|
-
} | undefined;
|
|
4108
|
-
readonly auditTrail?: boolean | undefined;
|
|
4109
|
-
readonly cached?: {
|
|
4110
|
-
enabled: boolean;
|
|
4111
|
-
ttl: number;
|
|
4112
|
-
invalidateOn: string[];
|
|
4113
|
-
} | undefined;
|
|
4114
|
-
readonly dataQuality?: {
|
|
4115
|
-
uniqueness: boolean;
|
|
4116
|
-
completeness: number;
|
|
4117
|
-
accuracy?: {
|
|
4118
|
-
source: string;
|
|
4119
|
-
threshold: number;
|
|
4120
|
-
} | undefined;
|
|
4121
|
-
} | undefined;
|
|
3282
|
+
readonly trackHistory?: boolean | undefined;
|
|
4122
3283
|
readonly visibleWhen?: {
|
|
4123
3284
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4124
3285
|
source?: string | undefined;
|
|
@@ -4157,7 +3318,6 @@ declare const SystemFile: Omit<{
|
|
|
4157
3318
|
} | undefined;
|
|
4158
3319
|
readonly sortable?: boolean | undefined;
|
|
4159
3320
|
readonly inlineHelpText?: string | undefined;
|
|
4160
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4161
3321
|
readonly caseSensitive?: boolean | undefined;
|
|
4162
3322
|
readonly autonumberFormat?: string | undefined;
|
|
4163
3323
|
readonly index?: boolean | undefined;
|
|
@@ -4188,7 +3348,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4188
3348
|
multiple: boolean;
|
|
4189
3349
|
unique: boolean;
|
|
4190
3350
|
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
4191
|
-
auditTrail: boolean;
|
|
4192
3351
|
hidden: boolean;
|
|
4193
3352
|
readonly: boolean;
|
|
4194
3353
|
sortable: boolean;
|
|
@@ -4214,7 +3373,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4214
3373
|
}[] | undefined;
|
|
4215
3374
|
reference?: string | undefined;
|
|
4216
3375
|
referenceFilters?: string[] | undefined;
|
|
4217
|
-
writeRequiresMasterRead?: boolean | undefined;
|
|
4218
3376
|
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4219
3377
|
inlineTitle?: string | undefined;
|
|
4220
3378
|
inlineColumns?: any[] | undefined;
|
|
@@ -4246,23 +3404,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
4246
3404
|
relationshipField?: string | undefined;
|
|
4247
3405
|
} | undefined;
|
|
4248
3406
|
language?: string | undefined;
|
|
4249
|
-
theme?: string | undefined;
|
|
4250
|
-
lineNumbers?: boolean | undefined;
|
|
4251
3407
|
maxRating?: number | undefined;
|
|
4252
|
-
allowHalf?: boolean | undefined;
|
|
4253
|
-
displayMap?: boolean | undefined;
|
|
4254
|
-
allowGeocoding?: boolean | undefined;
|
|
4255
|
-
addressFormat?: "us" | "uk" | "international" | undefined;
|
|
4256
|
-
colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
4257
|
-
allowAlpha?: boolean | undefined;
|
|
4258
|
-
presetColors?: string[] | undefined;
|
|
4259
3408
|
step?: number | undefined;
|
|
4260
|
-
showValue?: boolean | undefined;
|
|
4261
|
-
marks?: Record<string, string> | undefined;
|
|
4262
|
-
barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
4263
|
-
qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
4264
|
-
displayValue?: boolean | undefined;
|
|
4265
|
-
allowScanning?: boolean | undefined;
|
|
4266
3409
|
currencyConfig?: {
|
|
4267
3410
|
precision: number;
|
|
4268
3411
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -4316,46 +3459,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
4316
3459
|
} | undefined;
|
|
4317
3460
|
maxVersions?: number | undefined;
|
|
4318
3461
|
} | undefined;
|
|
4319
|
-
|
|
4320
|
-
enabled: boolean;
|
|
4321
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
4322
|
-
keyManagement: {
|
|
4323
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
4324
|
-
keyId?: string | undefined;
|
|
4325
|
-
rotationPolicy?: {
|
|
4326
|
-
enabled: boolean;
|
|
4327
|
-
frequencyDays: number;
|
|
4328
|
-
retainOldVersions: number;
|
|
4329
|
-
autoRotate: boolean;
|
|
4330
|
-
} | undefined;
|
|
4331
|
-
};
|
|
4332
|
-
scope: "field" | "record" | "table" | "database";
|
|
4333
|
-
deterministicEncryption: boolean;
|
|
4334
|
-
searchableEncryption: boolean;
|
|
4335
|
-
} | undefined;
|
|
4336
|
-
maskingRule?: {
|
|
4337
|
-
field: string;
|
|
4338
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
4339
|
-
preserveFormat: boolean;
|
|
4340
|
-
preserveLength: boolean;
|
|
4341
|
-
pattern?: string | undefined;
|
|
4342
|
-
roles?: string[] | undefined;
|
|
4343
|
-
exemptRoles?: string[] | undefined;
|
|
4344
|
-
} | undefined;
|
|
3462
|
+
trackHistory?: boolean | undefined;
|
|
4345
3463
|
dependencies?: string[] | undefined;
|
|
4346
|
-
cached?: {
|
|
4347
|
-
enabled: boolean;
|
|
4348
|
-
ttl: number;
|
|
4349
|
-
invalidateOn: string[];
|
|
4350
|
-
} | undefined;
|
|
4351
|
-
dataQuality?: {
|
|
4352
|
-
uniqueness: boolean;
|
|
4353
|
-
completeness: number;
|
|
4354
|
-
accuracy?: {
|
|
4355
|
-
source: string;
|
|
4356
|
-
threshold: number;
|
|
4357
|
-
} | undefined;
|
|
4358
|
-
} | undefined;
|
|
4359
3464
|
group?: string | undefined;
|
|
4360
3465
|
visibleWhen?: {
|
|
4361
3466
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -4427,7 +3532,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4427
3532
|
} | undefined;
|
|
4428
3533
|
system?: boolean | undefined;
|
|
4429
3534
|
inlineHelpText?: string | undefined;
|
|
4430
|
-
trackFeedHistory?: boolean | undefined;
|
|
4431
3535
|
caseSensitive?: boolean | undefined;
|
|
4432
3536
|
autonumberFormat?: string | undefined;
|
|
4433
3537
|
}>;
|
|
@@ -4518,12 +3622,13 @@ declare const SystemUploadSession: Omit<{
|
|
|
4518
3622
|
key: string;
|
|
4519
3623
|
interval?: string | undefined;
|
|
4520
3624
|
} | undefined;
|
|
4521
|
-
cdc?: {
|
|
4522
|
-
enabled: boolean;
|
|
4523
|
-
events: ("delete" | "update" | "insert")[];
|
|
4524
|
-
destination: string;
|
|
4525
|
-
} | undefined;
|
|
4526
3625
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
3626
|
+
activityMilestones?: {
|
|
3627
|
+
field: string;
|
|
3628
|
+
value: string;
|
|
3629
|
+
summary: string;
|
|
3630
|
+
type?: string | undefined;
|
|
3631
|
+
}[] | undefined;
|
|
4527
3632
|
displayNameField?: string | undefined;
|
|
4528
3633
|
recordName?: {
|
|
4529
3634
|
type: "text" | "autonumber";
|
|
@@ -4834,7 +3939,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4834
3939
|
clone: boolean;
|
|
4835
3940
|
apiMethods?: ("get" | "delete" | "list" | "search" | "upsert" | "create" | "import" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
4836
3941
|
} | undefined;
|
|
4837
|
-
recordTypes?: string[] | undefined;
|
|
4838
3942
|
sharingModel?: "private" | "full" | "read" | "read_write" | undefined;
|
|
4839
3943
|
publicSharing?: {
|
|
4840
3944
|
enabled: boolean;
|
|
@@ -4981,7 +4085,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4981
4085
|
readonly required?: boolean | undefined;
|
|
4982
4086
|
readonly multiple?: boolean | undefined;
|
|
4983
4087
|
readonly dependencies?: string[] | undefined;
|
|
4984
|
-
readonly theme?: string | undefined;
|
|
4985
4088
|
readonly externalId?: boolean | undefined;
|
|
4986
4089
|
readonly defaultValue?: unknown;
|
|
4987
4090
|
readonly group?: string | undefined;
|
|
@@ -4989,23 +4092,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4989
4092
|
readonly system?: boolean | undefined;
|
|
4990
4093
|
readonly min?: number | undefined;
|
|
4991
4094
|
readonly max?: number | undefined;
|
|
4992
|
-
readonly encryptionConfig?: {
|
|
4993
|
-
enabled: boolean;
|
|
4994
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
4995
|
-
keyManagement: {
|
|
4996
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
4997
|
-
keyId?: string | undefined;
|
|
4998
|
-
rotationPolicy?: {
|
|
4999
|
-
enabled: boolean;
|
|
5000
|
-
frequencyDays: number;
|
|
5001
|
-
retainOldVersions: number;
|
|
5002
|
-
autoRotate: boolean;
|
|
5003
|
-
} | undefined;
|
|
5004
|
-
};
|
|
5005
|
-
scope: "record" | "field" | "table" | "database";
|
|
5006
|
-
deterministicEncryption: boolean;
|
|
5007
|
-
searchableEncryption: boolean;
|
|
5008
|
-
} | undefined;
|
|
5009
4095
|
readonly columnName?: string | undefined;
|
|
5010
4096
|
readonly searchable?: boolean | undefined;
|
|
5011
4097
|
readonly unique?: boolean | undefined;
|
|
@@ -5014,7 +4100,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5014
4100
|
readonly scale?: number | undefined;
|
|
5015
4101
|
readonly reference?: string | undefined;
|
|
5016
4102
|
readonly referenceFilters?: string[] | undefined;
|
|
5017
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5018
4103
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5019
4104
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5020
4105
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5039,22 +4124,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
5039
4124
|
relationshipField?: string | undefined;
|
|
5040
4125
|
} | undefined;
|
|
5041
4126
|
readonly language?: string | undefined;
|
|
5042
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5043
4127
|
readonly maxRating?: number | undefined;
|
|
5044
|
-
readonly allowHalf?: boolean | undefined;
|
|
5045
|
-
readonly displayMap?: boolean | undefined;
|
|
5046
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5047
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5048
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5049
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5050
|
-
readonly presetColors?: string[] | undefined;
|
|
5051
4128
|
readonly step?: number | undefined;
|
|
5052
|
-
readonly showValue?: boolean | undefined;
|
|
5053
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5054
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5055
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5056
|
-
readonly displayValue?: boolean | undefined;
|
|
5057
|
-
readonly allowScanning?: boolean | undefined;
|
|
5058
4129
|
readonly currencyConfig?: {
|
|
5059
4130
|
precision: number;
|
|
5060
4131
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5108,29 +4179,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5108
4179
|
} | undefined;
|
|
5109
4180
|
maxVersions?: number | undefined;
|
|
5110
4181
|
} | undefined;
|
|
5111
|
-
readonly
|
|
5112
|
-
field: string;
|
|
5113
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5114
|
-
preserveFormat: boolean;
|
|
5115
|
-
preserveLength: boolean;
|
|
5116
|
-
pattern?: string | undefined;
|
|
5117
|
-
roles?: string[] | undefined;
|
|
5118
|
-
exemptRoles?: string[] | undefined;
|
|
5119
|
-
} | undefined;
|
|
5120
|
-
readonly auditTrail?: boolean | undefined;
|
|
5121
|
-
readonly cached?: {
|
|
5122
|
-
enabled: boolean;
|
|
5123
|
-
ttl: number;
|
|
5124
|
-
invalidateOn: string[];
|
|
5125
|
-
} | undefined;
|
|
5126
|
-
readonly dataQuality?: {
|
|
5127
|
-
uniqueness: boolean;
|
|
5128
|
-
completeness: number;
|
|
5129
|
-
accuracy?: {
|
|
5130
|
-
source: string;
|
|
5131
|
-
threshold: number;
|
|
5132
|
-
} | undefined;
|
|
5133
|
-
} | undefined;
|
|
4182
|
+
readonly trackHistory?: boolean | undefined;
|
|
5134
4183
|
readonly visibleWhen?: {
|
|
5135
4184
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5136
4185
|
source?: string | undefined;
|
|
@@ -5169,7 +4218,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5169
4218
|
} | undefined;
|
|
5170
4219
|
readonly sortable?: boolean | undefined;
|
|
5171
4220
|
readonly inlineHelpText?: string | undefined;
|
|
5172
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5173
4221
|
readonly caseSensitive?: boolean | undefined;
|
|
5174
4222
|
readonly autonumberFormat?: string | undefined;
|
|
5175
4223
|
readonly index?: boolean | undefined;
|
|
@@ -5191,7 +4239,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5191
4239
|
readonly required?: boolean | undefined;
|
|
5192
4240
|
readonly multiple?: boolean | undefined;
|
|
5193
4241
|
readonly dependencies?: string[] | undefined;
|
|
5194
|
-
readonly theme?: string | undefined;
|
|
5195
4242
|
readonly externalId?: boolean | undefined;
|
|
5196
4243
|
readonly defaultValue?: unknown;
|
|
5197
4244
|
readonly group?: string | undefined;
|
|
@@ -5199,23 +4246,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5199
4246
|
readonly system?: boolean | undefined;
|
|
5200
4247
|
readonly min?: number | undefined;
|
|
5201
4248
|
readonly max?: number | undefined;
|
|
5202
|
-
readonly encryptionConfig?: {
|
|
5203
|
-
enabled: boolean;
|
|
5204
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5205
|
-
keyManagement: {
|
|
5206
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5207
|
-
keyId?: string | undefined;
|
|
5208
|
-
rotationPolicy?: {
|
|
5209
|
-
enabled: boolean;
|
|
5210
|
-
frequencyDays: number;
|
|
5211
|
-
retainOldVersions: number;
|
|
5212
|
-
autoRotate: boolean;
|
|
5213
|
-
} | undefined;
|
|
5214
|
-
};
|
|
5215
|
-
scope: "record" | "field" | "table" | "database";
|
|
5216
|
-
deterministicEncryption: boolean;
|
|
5217
|
-
searchableEncryption: boolean;
|
|
5218
|
-
} | undefined;
|
|
5219
4249
|
readonly columnName?: string | undefined;
|
|
5220
4250
|
readonly searchable?: boolean | undefined;
|
|
5221
4251
|
readonly unique?: boolean | undefined;
|
|
@@ -5224,7 +4254,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5224
4254
|
readonly scale?: number | undefined;
|
|
5225
4255
|
readonly reference?: string | undefined;
|
|
5226
4256
|
readonly referenceFilters?: string[] | undefined;
|
|
5227
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5228
4257
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5229
4258
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5230
4259
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5249,22 +4278,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
5249
4278
|
relationshipField?: string | undefined;
|
|
5250
4279
|
} | undefined;
|
|
5251
4280
|
readonly language?: string | undefined;
|
|
5252
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5253
4281
|
readonly maxRating?: number | undefined;
|
|
5254
|
-
readonly allowHalf?: boolean | undefined;
|
|
5255
|
-
readonly displayMap?: boolean | undefined;
|
|
5256
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5257
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5258
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5259
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5260
|
-
readonly presetColors?: string[] | undefined;
|
|
5261
4282
|
readonly step?: number | undefined;
|
|
5262
|
-
readonly showValue?: boolean | undefined;
|
|
5263
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5264
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5265
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5266
|
-
readonly displayValue?: boolean | undefined;
|
|
5267
|
-
readonly allowScanning?: boolean | undefined;
|
|
5268
4283
|
readonly currencyConfig?: {
|
|
5269
4284
|
precision: number;
|
|
5270
4285
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5318,29 +4333,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5318
4333
|
} | undefined;
|
|
5319
4334
|
maxVersions?: number | undefined;
|
|
5320
4335
|
} | undefined;
|
|
5321
|
-
readonly
|
|
5322
|
-
field: string;
|
|
5323
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5324
|
-
preserveFormat: boolean;
|
|
5325
|
-
preserveLength: boolean;
|
|
5326
|
-
pattern?: string | undefined;
|
|
5327
|
-
roles?: string[] | undefined;
|
|
5328
|
-
exemptRoles?: string[] | undefined;
|
|
5329
|
-
} | undefined;
|
|
5330
|
-
readonly auditTrail?: boolean | undefined;
|
|
5331
|
-
readonly cached?: {
|
|
5332
|
-
enabled: boolean;
|
|
5333
|
-
ttl: number;
|
|
5334
|
-
invalidateOn: string[];
|
|
5335
|
-
} | undefined;
|
|
5336
|
-
readonly dataQuality?: {
|
|
5337
|
-
uniqueness: boolean;
|
|
5338
|
-
completeness: number;
|
|
5339
|
-
accuracy?: {
|
|
5340
|
-
source: string;
|
|
5341
|
-
threshold: number;
|
|
5342
|
-
} | undefined;
|
|
5343
|
-
} | undefined;
|
|
4336
|
+
readonly trackHistory?: boolean | undefined;
|
|
5344
4337
|
readonly visibleWhen?: {
|
|
5345
4338
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5346
4339
|
source?: string | undefined;
|
|
@@ -5379,7 +4372,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5379
4372
|
} | undefined;
|
|
5380
4373
|
readonly sortable?: boolean | undefined;
|
|
5381
4374
|
readonly inlineHelpText?: string | undefined;
|
|
5382
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5383
4375
|
readonly caseSensitive?: boolean | undefined;
|
|
5384
4376
|
readonly autonumberFormat?: string | undefined;
|
|
5385
4377
|
readonly index?: boolean | undefined;
|
|
@@ -5401,7 +4393,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5401
4393
|
readonly required?: boolean | undefined;
|
|
5402
4394
|
readonly multiple?: boolean | undefined;
|
|
5403
4395
|
readonly dependencies?: string[] | undefined;
|
|
5404
|
-
readonly theme?: string | undefined;
|
|
5405
4396
|
readonly externalId?: boolean | undefined;
|
|
5406
4397
|
readonly defaultValue?: unknown;
|
|
5407
4398
|
readonly group?: string | undefined;
|
|
@@ -5409,23 +4400,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5409
4400
|
readonly system?: boolean | undefined;
|
|
5410
4401
|
readonly min?: number | undefined;
|
|
5411
4402
|
readonly max?: number | undefined;
|
|
5412
|
-
readonly encryptionConfig?: {
|
|
5413
|
-
enabled: boolean;
|
|
5414
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5415
|
-
keyManagement: {
|
|
5416
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5417
|
-
keyId?: string | undefined;
|
|
5418
|
-
rotationPolicy?: {
|
|
5419
|
-
enabled: boolean;
|
|
5420
|
-
frequencyDays: number;
|
|
5421
|
-
retainOldVersions: number;
|
|
5422
|
-
autoRotate: boolean;
|
|
5423
|
-
} | undefined;
|
|
5424
|
-
};
|
|
5425
|
-
scope: "record" | "field" | "table" | "database";
|
|
5426
|
-
deterministicEncryption: boolean;
|
|
5427
|
-
searchableEncryption: boolean;
|
|
5428
|
-
} | undefined;
|
|
5429
4403
|
readonly columnName?: string | undefined;
|
|
5430
4404
|
readonly searchable?: boolean | undefined;
|
|
5431
4405
|
readonly unique?: boolean | undefined;
|
|
@@ -5434,7 +4408,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5434
4408
|
readonly scale?: number | undefined;
|
|
5435
4409
|
readonly reference?: string | undefined;
|
|
5436
4410
|
readonly referenceFilters?: string[] | undefined;
|
|
5437
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5438
4411
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5439
4412
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5440
4413
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5459,22 +4432,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
5459
4432
|
relationshipField?: string | undefined;
|
|
5460
4433
|
} | undefined;
|
|
5461
4434
|
readonly language?: string | undefined;
|
|
5462
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5463
4435
|
readonly maxRating?: number | undefined;
|
|
5464
|
-
readonly allowHalf?: boolean | undefined;
|
|
5465
|
-
readonly displayMap?: boolean | undefined;
|
|
5466
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5467
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5468
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5469
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5470
|
-
readonly presetColors?: string[] | undefined;
|
|
5471
4436
|
readonly step?: number | undefined;
|
|
5472
|
-
readonly showValue?: boolean | undefined;
|
|
5473
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5474
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5475
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5476
|
-
readonly displayValue?: boolean | undefined;
|
|
5477
|
-
readonly allowScanning?: boolean | undefined;
|
|
5478
4437
|
readonly currencyConfig?: {
|
|
5479
4438
|
precision: number;
|
|
5480
4439
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5528,29 +4487,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5528
4487
|
} | undefined;
|
|
5529
4488
|
maxVersions?: number | undefined;
|
|
5530
4489
|
} | undefined;
|
|
5531
|
-
readonly
|
|
5532
|
-
field: string;
|
|
5533
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5534
|
-
preserveFormat: boolean;
|
|
5535
|
-
preserveLength: boolean;
|
|
5536
|
-
pattern?: string | undefined;
|
|
5537
|
-
roles?: string[] | undefined;
|
|
5538
|
-
exemptRoles?: string[] | undefined;
|
|
5539
|
-
} | undefined;
|
|
5540
|
-
readonly auditTrail?: boolean | undefined;
|
|
5541
|
-
readonly cached?: {
|
|
5542
|
-
enabled: boolean;
|
|
5543
|
-
ttl: number;
|
|
5544
|
-
invalidateOn: string[];
|
|
5545
|
-
} | undefined;
|
|
5546
|
-
readonly dataQuality?: {
|
|
5547
|
-
uniqueness: boolean;
|
|
5548
|
-
completeness: number;
|
|
5549
|
-
accuracy?: {
|
|
5550
|
-
source: string;
|
|
5551
|
-
threshold: number;
|
|
5552
|
-
} | undefined;
|
|
5553
|
-
} | undefined;
|
|
4490
|
+
readonly trackHistory?: boolean | undefined;
|
|
5554
4491
|
readonly visibleWhen?: {
|
|
5555
4492
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5556
4493
|
source?: string | undefined;
|
|
@@ -5589,7 +4526,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5589
4526
|
} | undefined;
|
|
5590
4527
|
readonly sortable?: boolean | undefined;
|
|
5591
4528
|
readonly inlineHelpText?: string | undefined;
|
|
5592
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5593
4529
|
readonly caseSensitive?: boolean | undefined;
|
|
5594
4530
|
readonly autonumberFormat?: string | undefined;
|
|
5595
4531
|
readonly index?: boolean | undefined;
|
|
@@ -5611,7 +4547,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5611
4547
|
readonly required?: boolean | undefined;
|
|
5612
4548
|
readonly multiple?: boolean | undefined;
|
|
5613
4549
|
readonly dependencies?: string[] | undefined;
|
|
5614
|
-
readonly theme?: string | undefined;
|
|
5615
4550
|
readonly externalId?: boolean | undefined;
|
|
5616
4551
|
readonly defaultValue?: unknown;
|
|
5617
4552
|
readonly group?: string | undefined;
|
|
@@ -5619,23 +4554,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5619
4554
|
readonly system?: boolean | undefined;
|
|
5620
4555
|
readonly min?: number | undefined;
|
|
5621
4556
|
readonly max?: number | undefined;
|
|
5622
|
-
readonly encryptionConfig?: {
|
|
5623
|
-
enabled: boolean;
|
|
5624
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5625
|
-
keyManagement: {
|
|
5626
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5627
|
-
keyId?: string | undefined;
|
|
5628
|
-
rotationPolicy?: {
|
|
5629
|
-
enabled: boolean;
|
|
5630
|
-
frequencyDays: number;
|
|
5631
|
-
retainOldVersions: number;
|
|
5632
|
-
autoRotate: boolean;
|
|
5633
|
-
} | undefined;
|
|
5634
|
-
};
|
|
5635
|
-
scope: "record" | "field" | "table" | "database";
|
|
5636
|
-
deterministicEncryption: boolean;
|
|
5637
|
-
searchableEncryption: boolean;
|
|
5638
|
-
} | undefined;
|
|
5639
4557
|
readonly columnName?: string | undefined;
|
|
5640
4558
|
readonly searchable?: boolean | undefined;
|
|
5641
4559
|
readonly unique?: boolean | undefined;
|
|
@@ -5644,7 +4562,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5644
4562
|
readonly scale?: number | undefined;
|
|
5645
4563
|
readonly reference?: string | undefined;
|
|
5646
4564
|
readonly referenceFilters?: string[] | undefined;
|
|
5647
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5648
4565
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5649
4566
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5650
4567
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5669,22 +4586,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
5669
4586
|
relationshipField?: string | undefined;
|
|
5670
4587
|
} | undefined;
|
|
5671
4588
|
readonly language?: string | undefined;
|
|
5672
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5673
4589
|
readonly maxRating?: number | undefined;
|
|
5674
|
-
readonly allowHalf?: boolean | undefined;
|
|
5675
|
-
readonly displayMap?: boolean | undefined;
|
|
5676
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5677
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5678
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5679
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5680
|
-
readonly presetColors?: string[] | undefined;
|
|
5681
4590
|
readonly step?: number | undefined;
|
|
5682
|
-
readonly showValue?: boolean | undefined;
|
|
5683
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5684
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5685
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5686
|
-
readonly displayValue?: boolean | undefined;
|
|
5687
|
-
readonly allowScanning?: boolean | undefined;
|
|
5688
4591
|
readonly currencyConfig?: {
|
|
5689
4592
|
precision: number;
|
|
5690
4593
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5738,29 +4641,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5738
4641
|
} | undefined;
|
|
5739
4642
|
maxVersions?: number | undefined;
|
|
5740
4643
|
} | undefined;
|
|
5741
|
-
readonly
|
|
5742
|
-
field: string;
|
|
5743
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5744
|
-
preserveFormat: boolean;
|
|
5745
|
-
preserveLength: boolean;
|
|
5746
|
-
pattern?: string | undefined;
|
|
5747
|
-
roles?: string[] | undefined;
|
|
5748
|
-
exemptRoles?: string[] | undefined;
|
|
5749
|
-
} | undefined;
|
|
5750
|
-
readonly auditTrail?: boolean | undefined;
|
|
5751
|
-
readonly cached?: {
|
|
5752
|
-
enabled: boolean;
|
|
5753
|
-
ttl: number;
|
|
5754
|
-
invalidateOn: string[];
|
|
5755
|
-
} | undefined;
|
|
5756
|
-
readonly dataQuality?: {
|
|
5757
|
-
uniqueness: boolean;
|
|
5758
|
-
completeness: number;
|
|
5759
|
-
accuracy?: {
|
|
5760
|
-
source: string;
|
|
5761
|
-
threshold: number;
|
|
5762
|
-
} | undefined;
|
|
5763
|
-
} | undefined;
|
|
4644
|
+
readonly trackHistory?: boolean | undefined;
|
|
5764
4645
|
readonly visibleWhen?: {
|
|
5765
4646
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5766
4647
|
source?: string | undefined;
|
|
@@ -5799,7 +4680,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5799
4680
|
} | undefined;
|
|
5800
4681
|
readonly sortable?: boolean | undefined;
|
|
5801
4682
|
readonly inlineHelpText?: string | undefined;
|
|
5802
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5803
4683
|
readonly caseSensitive?: boolean | undefined;
|
|
5804
4684
|
readonly autonumberFormat?: string | undefined;
|
|
5805
4685
|
readonly index?: boolean | undefined;
|
|
@@ -5821,7 +4701,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5821
4701
|
readonly required?: boolean | undefined;
|
|
5822
4702
|
readonly multiple?: boolean | undefined;
|
|
5823
4703
|
readonly dependencies?: string[] | undefined;
|
|
5824
|
-
readonly theme?: string | undefined;
|
|
5825
4704
|
readonly externalId?: boolean | undefined;
|
|
5826
4705
|
readonly defaultValue?: unknown;
|
|
5827
4706
|
readonly group?: string | undefined;
|
|
@@ -5829,23 +4708,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5829
4708
|
readonly system?: boolean | undefined;
|
|
5830
4709
|
readonly min?: number | undefined;
|
|
5831
4710
|
readonly max?: number | undefined;
|
|
5832
|
-
readonly encryptionConfig?: {
|
|
5833
|
-
enabled: boolean;
|
|
5834
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
5835
|
-
keyManagement: {
|
|
5836
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
5837
|
-
keyId?: string | undefined;
|
|
5838
|
-
rotationPolicy?: {
|
|
5839
|
-
enabled: boolean;
|
|
5840
|
-
frequencyDays: number;
|
|
5841
|
-
retainOldVersions: number;
|
|
5842
|
-
autoRotate: boolean;
|
|
5843
|
-
} | undefined;
|
|
5844
|
-
};
|
|
5845
|
-
scope: "record" | "field" | "table" | "database";
|
|
5846
|
-
deterministicEncryption: boolean;
|
|
5847
|
-
searchableEncryption: boolean;
|
|
5848
|
-
} | undefined;
|
|
5849
4711
|
readonly columnName?: string | undefined;
|
|
5850
4712
|
readonly searchable?: boolean | undefined;
|
|
5851
4713
|
readonly unique?: boolean | undefined;
|
|
@@ -5854,7 +4716,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5854
4716
|
readonly scale?: number | undefined;
|
|
5855
4717
|
readonly reference?: string | undefined;
|
|
5856
4718
|
readonly referenceFilters?: string[] | undefined;
|
|
5857
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5858
4719
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5859
4720
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5860
4721
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5879,22 +4740,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
5879
4740
|
relationshipField?: string | undefined;
|
|
5880
4741
|
} | undefined;
|
|
5881
4742
|
readonly language?: string | undefined;
|
|
5882
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5883
4743
|
readonly maxRating?: number | undefined;
|
|
5884
|
-
readonly allowHalf?: boolean | undefined;
|
|
5885
|
-
readonly displayMap?: boolean | undefined;
|
|
5886
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
5887
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
5888
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
5889
|
-
readonly allowAlpha?: boolean | undefined;
|
|
5890
|
-
readonly presetColors?: string[] | undefined;
|
|
5891
4744
|
readonly step?: number | undefined;
|
|
5892
|
-
readonly showValue?: boolean | undefined;
|
|
5893
|
-
readonly marks?: Record<string, string> | undefined;
|
|
5894
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
5895
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
5896
|
-
readonly displayValue?: boolean | undefined;
|
|
5897
|
-
readonly allowScanning?: boolean | undefined;
|
|
5898
4745
|
readonly currencyConfig?: {
|
|
5899
4746
|
precision: number;
|
|
5900
4747
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5948,29 +4795,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5948
4795
|
} | undefined;
|
|
5949
4796
|
maxVersions?: number | undefined;
|
|
5950
4797
|
} | undefined;
|
|
5951
|
-
readonly
|
|
5952
|
-
field: string;
|
|
5953
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
5954
|
-
preserveFormat: boolean;
|
|
5955
|
-
preserveLength: boolean;
|
|
5956
|
-
pattern?: string | undefined;
|
|
5957
|
-
roles?: string[] | undefined;
|
|
5958
|
-
exemptRoles?: string[] | undefined;
|
|
5959
|
-
} | undefined;
|
|
5960
|
-
readonly auditTrail?: boolean | undefined;
|
|
5961
|
-
readonly cached?: {
|
|
5962
|
-
enabled: boolean;
|
|
5963
|
-
ttl: number;
|
|
5964
|
-
invalidateOn: string[];
|
|
5965
|
-
} | undefined;
|
|
5966
|
-
readonly dataQuality?: {
|
|
5967
|
-
uniqueness: boolean;
|
|
5968
|
-
completeness: number;
|
|
5969
|
-
accuracy?: {
|
|
5970
|
-
source: string;
|
|
5971
|
-
threshold: number;
|
|
5972
|
-
} | undefined;
|
|
5973
|
-
} | undefined;
|
|
4798
|
+
readonly trackHistory?: boolean | undefined;
|
|
5974
4799
|
readonly visibleWhen?: {
|
|
5975
4800
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5976
4801
|
source?: string | undefined;
|
|
@@ -6009,7 +4834,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6009
4834
|
} | undefined;
|
|
6010
4835
|
readonly sortable?: boolean | undefined;
|
|
6011
4836
|
readonly inlineHelpText?: string | undefined;
|
|
6012
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6013
4837
|
readonly caseSensitive?: boolean | undefined;
|
|
6014
4838
|
readonly autonumberFormat?: string | undefined;
|
|
6015
4839
|
readonly index?: boolean | undefined;
|
|
@@ -6031,7 +4855,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6031
4855
|
readonly required?: boolean | undefined;
|
|
6032
4856
|
readonly multiple?: boolean | undefined;
|
|
6033
4857
|
readonly dependencies?: string[] | undefined;
|
|
6034
|
-
readonly theme?: string | undefined;
|
|
6035
4858
|
readonly externalId?: boolean | undefined;
|
|
6036
4859
|
readonly defaultValue?: unknown;
|
|
6037
4860
|
readonly group?: string | undefined;
|
|
@@ -6039,23 +4862,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6039
4862
|
readonly system?: boolean | undefined;
|
|
6040
4863
|
readonly min?: number | undefined;
|
|
6041
4864
|
readonly max?: number | undefined;
|
|
6042
|
-
readonly encryptionConfig?: {
|
|
6043
|
-
enabled: boolean;
|
|
6044
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6045
|
-
keyManagement: {
|
|
6046
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6047
|
-
keyId?: string | undefined;
|
|
6048
|
-
rotationPolicy?: {
|
|
6049
|
-
enabled: boolean;
|
|
6050
|
-
frequencyDays: number;
|
|
6051
|
-
retainOldVersions: number;
|
|
6052
|
-
autoRotate: boolean;
|
|
6053
|
-
} | undefined;
|
|
6054
|
-
};
|
|
6055
|
-
scope: "record" | "field" | "table" | "database";
|
|
6056
|
-
deterministicEncryption: boolean;
|
|
6057
|
-
searchableEncryption: boolean;
|
|
6058
|
-
} | undefined;
|
|
6059
4865
|
readonly columnName?: string | undefined;
|
|
6060
4866
|
readonly searchable?: boolean | undefined;
|
|
6061
4867
|
readonly unique?: boolean | undefined;
|
|
@@ -6064,7 +4870,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6064
4870
|
readonly scale?: number | undefined;
|
|
6065
4871
|
readonly reference?: string | undefined;
|
|
6066
4872
|
readonly referenceFilters?: string[] | undefined;
|
|
6067
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6068
4873
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6069
4874
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6070
4875
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6089,22 +4894,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
6089
4894
|
relationshipField?: string | undefined;
|
|
6090
4895
|
} | undefined;
|
|
6091
4896
|
readonly language?: string | undefined;
|
|
6092
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6093
4897
|
readonly maxRating?: number | undefined;
|
|
6094
|
-
readonly allowHalf?: boolean | undefined;
|
|
6095
|
-
readonly displayMap?: boolean | undefined;
|
|
6096
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6097
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6098
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6099
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6100
|
-
readonly presetColors?: string[] | undefined;
|
|
6101
4898
|
readonly step?: number | undefined;
|
|
6102
|
-
readonly showValue?: boolean | undefined;
|
|
6103
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6104
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6105
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6106
|
-
readonly displayValue?: boolean | undefined;
|
|
6107
|
-
readonly allowScanning?: boolean | undefined;
|
|
6108
4899
|
readonly currencyConfig?: {
|
|
6109
4900
|
precision: number;
|
|
6110
4901
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6158,29 +4949,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6158
4949
|
} | undefined;
|
|
6159
4950
|
maxVersions?: number | undefined;
|
|
6160
4951
|
} | undefined;
|
|
6161
|
-
readonly
|
|
6162
|
-
field: string;
|
|
6163
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6164
|
-
preserveFormat: boolean;
|
|
6165
|
-
preserveLength: boolean;
|
|
6166
|
-
pattern?: string | undefined;
|
|
6167
|
-
roles?: string[] | undefined;
|
|
6168
|
-
exemptRoles?: string[] | undefined;
|
|
6169
|
-
} | undefined;
|
|
6170
|
-
readonly auditTrail?: boolean | undefined;
|
|
6171
|
-
readonly cached?: {
|
|
6172
|
-
enabled: boolean;
|
|
6173
|
-
ttl: number;
|
|
6174
|
-
invalidateOn: string[];
|
|
6175
|
-
} | undefined;
|
|
6176
|
-
readonly dataQuality?: {
|
|
6177
|
-
uniqueness: boolean;
|
|
6178
|
-
completeness: number;
|
|
6179
|
-
accuracy?: {
|
|
6180
|
-
source: string;
|
|
6181
|
-
threshold: number;
|
|
6182
|
-
} | undefined;
|
|
6183
|
-
} | undefined;
|
|
4952
|
+
readonly trackHistory?: boolean | undefined;
|
|
6184
4953
|
readonly visibleWhen?: {
|
|
6185
4954
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6186
4955
|
source?: string | undefined;
|
|
@@ -6219,7 +4988,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6219
4988
|
} | undefined;
|
|
6220
4989
|
readonly sortable?: boolean | undefined;
|
|
6221
4990
|
readonly inlineHelpText?: string | undefined;
|
|
6222
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6223
4991
|
readonly caseSensitive?: boolean | undefined;
|
|
6224
4992
|
readonly autonumberFormat?: string | undefined;
|
|
6225
4993
|
readonly index?: boolean | undefined;
|
|
@@ -6241,7 +5009,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6241
5009
|
readonly required?: boolean | undefined;
|
|
6242
5010
|
readonly multiple?: boolean | undefined;
|
|
6243
5011
|
readonly dependencies?: string[] | undefined;
|
|
6244
|
-
readonly theme?: string | undefined;
|
|
6245
5012
|
readonly externalId?: boolean | undefined;
|
|
6246
5013
|
readonly defaultValue?: unknown;
|
|
6247
5014
|
readonly group?: string | undefined;
|
|
@@ -6249,23 +5016,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6249
5016
|
readonly system?: boolean | undefined;
|
|
6250
5017
|
readonly min?: number | undefined;
|
|
6251
5018
|
readonly max?: number | undefined;
|
|
6252
|
-
readonly encryptionConfig?: {
|
|
6253
|
-
enabled: boolean;
|
|
6254
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6255
|
-
keyManagement: {
|
|
6256
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6257
|
-
keyId?: string | undefined;
|
|
6258
|
-
rotationPolicy?: {
|
|
6259
|
-
enabled: boolean;
|
|
6260
|
-
frequencyDays: number;
|
|
6261
|
-
retainOldVersions: number;
|
|
6262
|
-
autoRotate: boolean;
|
|
6263
|
-
} | undefined;
|
|
6264
|
-
};
|
|
6265
|
-
scope: "record" | "field" | "table" | "database";
|
|
6266
|
-
deterministicEncryption: boolean;
|
|
6267
|
-
searchableEncryption: boolean;
|
|
6268
|
-
} | undefined;
|
|
6269
5019
|
readonly columnName?: string | undefined;
|
|
6270
5020
|
readonly searchable?: boolean | undefined;
|
|
6271
5021
|
readonly unique?: boolean | undefined;
|
|
@@ -6274,7 +5024,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6274
5024
|
readonly scale?: number | undefined;
|
|
6275
5025
|
readonly reference?: string | undefined;
|
|
6276
5026
|
readonly referenceFilters?: string[] | undefined;
|
|
6277
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6278
5027
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6279
5028
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6280
5029
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6299,22 +5048,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
6299
5048
|
relationshipField?: string | undefined;
|
|
6300
5049
|
} | undefined;
|
|
6301
5050
|
readonly language?: string | undefined;
|
|
6302
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6303
5051
|
readonly maxRating?: number | undefined;
|
|
6304
|
-
readonly allowHalf?: boolean | undefined;
|
|
6305
|
-
readonly displayMap?: boolean | undefined;
|
|
6306
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6307
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6308
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6309
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6310
|
-
readonly presetColors?: string[] | undefined;
|
|
6311
5052
|
readonly step?: number | undefined;
|
|
6312
|
-
readonly showValue?: boolean | undefined;
|
|
6313
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6314
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6315
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6316
|
-
readonly displayValue?: boolean | undefined;
|
|
6317
|
-
readonly allowScanning?: boolean | undefined;
|
|
6318
5053
|
readonly currencyConfig?: {
|
|
6319
5054
|
precision: number;
|
|
6320
5055
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6368,29 +5103,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6368
5103
|
} | undefined;
|
|
6369
5104
|
maxVersions?: number | undefined;
|
|
6370
5105
|
} | undefined;
|
|
6371
|
-
readonly
|
|
6372
|
-
field: string;
|
|
6373
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6374
|
-
preserveFormat: boolean;
|
|
6375
|
-
preserveLength: boolean;
|
|
6376
|
-
pattern?: string | undefined;
|
|
6377
|
-
roles?: string[] | undefined;
|
|
6378
|
-
exemptRoles?: string[] | undefined;
|
|
6379
|
-
} | undefined;
|
|
6380
|
-
readonly auditTrail?: boolean | undefined;
|
|
6381
|
-
readonly cached?: {
|
|
6382
|
-
enabled: boolean;
|
|
6383
|
-
ttl: number;
|
|
6384
|
-
invalidateOn: string[];
|
|
6385
|
-
} | undefined;
|
|
6386
|
-
readonly dataQuality?: {
|
|
6387
|
-
uniqueness: boolean;
|
|
6388
|
-
completeness: number;
|
|
6389
|
-
accuracy?: {
|
|
6390
|
-
source: string;
|
|
6391
|
-
threshold: number;
|
|
6392
|
-
} | undefined;
|
|
6393
|
-
} | undefined;
|
|
5106
|
+
readonly trackHistory?: boolean | undefined;
|
|
6394
5107
|
readonly visibleWhen?: {
|
|
6395
5108
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6396
5109
|
source?: string | undefined;
|
|
@@ -6429,7 +5142,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6429
5142
|
} | undefined;
|
|
6430
5143
|
readonly sortable?: boolean | undefined;
|
|
6431
5144
|
readonly inlineHelpText?: string | undefined;
|
|
6432
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6433
5145
|
readonly caseSensitive?: boolean | undefined;
|
|
6434
5146
|
readonly autonumberFormat?: string | undefined;
|
|
6435
5147
|
readonly index?: boolean | undefined;
|
|
@@ -6451,7 +5163,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6451
5163
|
readonly required?: boolean | undefined;
|
|
6452
5164
|
readonly multiple?: boolean | undefined;
|
|
6453
5165
|
readonly dependencies?: string[] | undefined;
|
|
6454
|
-
readonly theme?: string | undefined;
|
|
6455
5166
|
readonly externalId?: boolean | undefined;
|
|
6456
5167
|
readonly defaultValue?: unknown;
|
|
6457
5168
|
readonly group?: string | undefined;
|
|
@@ -6459,23 +5170,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6459
5170
|
readonly system?: boolean | undefined;
|
|
6460
5171
|
readonly min?: number | undefined;
|
|
6461
5172
|
readonly max?: number | undefined;
|
|
6462
|
-
readonly encryptionConfig?: {
|
|
6463
|
-
enabled: boolean;
|
|
6464
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6465
|
-
keyManagement: {
|
|
6466
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6467
|
-
keyId?: string | undefined;
|
|
6468
|
-
rotationPolicy?: {
|
|
6469
|
-
enabled: boolean;
|
|
6470
|
-
frequencyDays: number;
|
|
6471
|
-
retainOldVersions: number;
|
|
6472
|
-
autoRotate: boolean;
|
|
6473
|
-
} | undefined;
|
|
6474
|
-
};
|
|
6475
|
-
scope: "record" | "field" | "table" | "database";
|
|
6476
|
-
deterministicEncryption: boolean;
|
|
6477
|
-
searchableEncryption: boolean;
|
|
6478
|
-
} | undefined;
|
|
6479
5173
|
readonly columnName?: string | undefined;
|
|
6480
5174
|
readonly searchable?: boolean | undefined;
|
|
6481
5175
|
readonly unique?: boolean | undefined;
|
|
@@ -6484,7 +5178,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6484
5178
|
readonly scale?: number | undefined;
|
|
6485
5179
|
readonly reference?: string | undefined;
|
|
6486
5180
|
readonly referenceFilters?: string[] | undefined;
|
|
6487
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6488
5181
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6489
5182
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6490
5183
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6509,22 +5202,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
6509
5202
|
relationshipField?: string | undefined;
|
|
6510
5203
|
} | undefined;
|
|
6511
5204
|
readonly language?: string | undefined;
|
|
6512
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6513
5205
|
readonly maxRating?: number | undefined;
|
|
6514
|
-
readonly allowHalf?: boolean | undefined;
|
|
6515
|
-
readonly displayMap?: boolean | undefined;
|
|
6516
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6517
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6518
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6519
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6520
|
-
readonly presetColors?: string[] | undefined;
|
|
6521
5206
|
readonly step?: number | undefined;
|
|
6522
|
-
readonly showValue?: boolean | undefined;
|
|
6523
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6524
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6525
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6526
|
-
readonly displayValue?: boolean | undefined;
|
|
6527
|
-
readonly allowScanning?: boolean | undefined;
|
|
6528
5207
|
readonly currencyConfig?: {
|
|
6529
5208
|
precision: number;
|
|
6530
5209
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6578,29 +5257,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6578
5257
|
} | undefined;
|
|
6579
5258
|
maxVersions?: number | undefined;
|
|
6580
5259
|
} | undefined;
|
|
6581
|
-
readonly
|
|
6582
|
-
field: string;
|
|
6583
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6584
|
-
preserveFormat: boolean;
|
|
6585
|
-
preserveLength: boolean;
|
|
6586
|
-
pattern?: string | undefined;
|
|
6587
|
-
roles?: string[] | undefined;
|
|
6588
|
-
exemptRoles?: string[] | undefined;
|
|
6589
|
-
} | undefined;
|
|
6590
|
-
readonly auditTrail?: boolean | undefined;
|
|
6591
|
-
readonly cached?: {
|
|
6592
|
-
enabled: boolean;
|
|
6593
|
-
ttl: number;
|
|
6594
|
-
invalidateOn: string[];
|
|
6595
|
-
} | undefined;
|
|
6596
|
-
readonly dataQuality?: {
|
|
6597
|
-
uniqueness: boolean;
|
|
6598
|
-
completeness: number;
|
|
6599
|
-
accuracy?: {
|
|
6600
|
-
source: string;
|
|
6601
|
-
threshold: number;
|
|
6602
|
-
} | undefined;
|
|
6603
|
-
} | undefined;
|
|
5260
|
+
readonly trackHistory?: boolean | undefined;
|
|
6604
5261
|
readonly visibleWhen?: {
|
|
6605
5262
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6606
5263
|
source?: string | undefined;
|
|
@@ -6639,7 +5296,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6639
5296
|
} | undefined;
|
|
6640
5297
|
readonly sortable?: boolean | undefined;
|
|
6641
5298
|
readonly inlineHelpText?: string | undefined;
|
|
6642
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6643
5299
|
readonly caseSensitive?: boolean | undefined;
|
|
6644
5300
|
readonly autonumberFormat?: string | undefined;
|
|
6645
5301
|
readonly index?: boolean | undefined;
|
|
@@ -6661,7 +5317,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6661
5317
|
readonly required?: boolean | undefined;
|
|
6662
5318
|
readonly multiple?: boolean | undefined;
|
|
6663
5319
|
readonly dependencies?: string[] | undefined;
|
|
6664
|
-
readonly theme?: string | undefined;
|
|
6665
5320
|
readonly externalId?: boolean | undefined;
|
|
6666
5321
|
readonly defaultValue?: unknown;
|
|
6667
5322
|
readonly group?: string | undefined;
|
|
@@ -6669,23 +5324,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6669
5324
|
readonly system?: boolean | undefined;
|
|
6670
5325
|
readonly min?: number | undefined;
|
|
6671
5326
|
readonly max?: number | undefined;
|
|
6672
|
-
readonly encryptionConfig?: {
|
|
6673
|
-
enabled: boolean;
|
|
6674
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6675
|
-
keyManagement: {
|
|
6676
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6677
|
-
keyId?: string | undefined;
|
|
6678
|
-
rotationPolicy?: {
|
|
6679
|
-
enabled: boolean;
|
|
6680
|
-
frequencyDays: number;
|
|
6681
|
-
retainOldVersions: number;
|
|
6682
|
-
autoRotate: boolean;
|
|
6683
|
-
} | undefined;
|
|
6684
|
-
};
|
|
6685
|
-
scope: "record" | "field" | "table" | "database";
|
|
6686
|
-
deterministicEncryption: boolean;
|
|
6687
|
-
searchableEncryption: boolean;
|
|
6688
|
-
} | undefined;
|
|
6689
5327
|
readonly columnName?: string | undefined;
|
|
6690
5328
|
readonly searchable?: boolean | undefined;
|
|
6691
5329
|
readonly unique?: boolean | undefined;
|
|
@@ -6694,7 +5332,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6694
5332
|
readonly scale?: number | undefined;
|
|
6695
5333
|
readonly reference?: string | undefined;
|
|
6696
5334
|
readonly referenceFilters?: string[] | undefined;
|
|
6697
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6698
5335
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6699
5336
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6700
5337
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6719,22 +5356,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
6719
5356
|
relationshipField?: string | undefined;
|
|
6720
5357
|
} | undefined;
|
|
6721
5358
|
readonly language?: string | undefined;
|
|
6722
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6723
5359
|
readonly maxRating?: number | undefined;
|
|
6724
|
-
readonly allowHalf?: boolean | undefined;
|
|
6725
|
-
readonly displayMap?: boolean | undefined;
|
|
6726
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6727
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6728
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6729
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6730
|
-
readonly presetColors?: string[] | undefined;
|
|
6731
5360
|
readonly step?: number | undefined;
|
|
6732
|
-
readonly showValue?: boolean | undefined;
|
|
6733
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6734
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6735
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6736
|
-
readonly displayValue?: boolean | undefined;
|
|
6737
|
-
readonly allowScanning?: boolean | undefined;
|
|
6738
5361
|
readonly currencyConfig?: {
|
|
6739
5362
|
precision: number;
|
|
6740
5363
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6788,29 +5411,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6788
5411
|
} | undefined;
|
|
6789
5412
|
maxVersions?: number | undefined;
|
|
6790
5413
|
} | undefined;
|
|
6791
|
-
readonly
|
|
6792
|
-
field: string;
|
|
6793
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
6794
|
-
preserveFormat: boolean;
|
|
6795
|
-
preserveLength: boolean;
|
|
6796
|
-
pattern?: string | undefined;
|
|
6797
|
-
roles?: string[] | undefined;
|
|
6798
|
-
exemptRoles?: string[] | undefined;
|
|
6799
|
-
} | undefined;
|
|
6800
|
-
readonly auditTrail?: boolean | undefined;
|
|
6801
|
-
readonly cached?: {
|
|
6802
|
-
enabled: boolean;
|
|
6803
|
-
ttl: number;
|
|
6804
|
-
invalidateOn: string[];
|
|
6805
|
-
} | undefined;
|
|
6806
|
-
readonly dataQuality?: {
|
|
6807
|
-
uniqueness: boolean;
|
|
6808
|
-
completeness: number;
|
|
6809
|
-
accuracy?: {
|
|
6810
|
-
source: string;
|
|
6811
|
-
threshold: number;
|
|
6812
|
-
} | undefined;
|
|
6813
|
-
} | undefined;
|
|
5414
|
+
readonly trackHistory?: boolean | undefined;
|
|
6814
5415
|
readonly visibleWhen?: {
|
|
6815
5416
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6816
5417
|
source?: string | undefined;
|
|
@@ -6849,7 +5450,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6849
5450
|
} | undefined;
|
|
6850
5451
|
readonly sortable?: boolean | undefined;
|
|
6851
5452
|
readonly inlineHelpText?: string | undefined;
|
|
6852
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6853
5453
|
readonly caseSensitive?: boolean | undefined;
|
|
6854
5454
|
readonly autonumberFormat?: string | undefined;
|
|
6855
5455
|
readonly index?: boolean | undefined;
|
|
@@ -6871,7 +5471,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6871
5471
|
readonly required?: boolean | undefined;
|
|
6872
5472
|
readonly multiple?: boolean | undefined;
|
|
6873
5473
|
readonly dependencies?: string[] | undefined;
|
|
6874
|
-
readonly theme?: string | undefined;
|
|
6875
5474
|
readonly externalId?: boolean | undefined;
|
|
6876
5475
|
readonly defaultValue?: unknown;
|
|
6877
5476
|
readonly group?: string | undefined;
|
|
@@ -6879,23 +5478,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6879
5478
|
readonly system?: boolean | undefined;
|
|
6880
5479
|
readonly min?: number | undefined;
|
|
6881
5480
|
readonly max?: number | undefined;
|
|
6882
|
-
readonly encryptionConfig?: {
|
|
6883
|
-
enabled: boolean;
|
|
6884
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
6885
|
-
keyManagement: {
|
|
6886
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
6887
|
-
keyId?: string | undefined;
|
|
6888
|
-
rotationPolicy?: {
|
|
6889
|
-
enabled: boolean;
|
|
6890
|
-
frequencyDays: number;
|
|
6891
|
-
retainOldVersions: number;
|
|
6892
|
-
autoRotate: boolean;
|
|
6893
|
-
} | undefined;
|
|
6894
|
-
};
|
|
6895
|
-
scope: "record" | "field" | "table" | "database";
|
|
6896
|
-
deterministicEncryption: boolean;
|
|
6897
|
-
searchableEncryption: boolean;
|
|
6898
|
-
} | undefined;
|
|
6899
5481
|
readonly columnName?: string | undefined;
|
|
6900
5482
|
readonly searchable?: boolean | undefined;
|
|
6901
5483
|
readonly unique?: boolean | undefined;
|
|
@@ -6904,7 +5486,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6904
5486
|
readonly scale?: number | undefined;
|
|
6905
5487
|
readonly reference?: string | undefined;
|
|
6906
5488
|
readonly referenceFilters?: string[] | undefined;
|
|
6907
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6908
5489
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6909
5490
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6910
5491
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6929,22 +5510,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
6929
5510
|
relationshipField?: string | undefined;
|
|
6930
5511
|
} | undefined;
|
|
6931
5512
|
readonly language?: string | undefined;
|
|
6932
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6933
5513
|
readonly maxRating?: number | undefined;
|
|
6934
|
-
readonly allowHalf?: boolean | undefined;
|
|
6935
|
-
readonly displayMap?: boolean | undefined;
|
|
6936
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
6937
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
6938
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
6939
|
-
readonly allowAlpha?: boolean | undefined;
|
|
6940
|
-
readonly presetColors?: string[] | undefined;
|
|
6941
5514
|
readonly step?: number | undefined;
|
|
6942
|
-
readonly showValue?: boolean | undefined;
|
|
6943
|
-
readonly marks?: Record<string, string> | undefined;
|
|
6944
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
6945
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
6946
|
-
readonly displayValue?: boolean | undefined;
|
|
6947
|
-
readonly allowScanning?: boolean | undefined;
|
|
6948
5515
|
readonly currencyConfig?: {
|
|
6949
5516
|
precision: number;
|
|
6950
5517
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6998,29 +5565,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6998
5565
|
} | undefined;
|
|
6999
5566
|
maxVersions?: number | undefined;
|
|
7000
5567
|
} | undefined;
|
|
7001
|
-
readonly
|
|
7002
|
-
field: string;
|
|
7003
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
7004
|
-
preserveFormat: boolean;
|
|
7005
|
-
preserveLength: boolean;
|
|
7006
|
-
pattern?: string | undefined;
|
|
7007
|
-
roles?: string[] | undefined;
|
|
7008
|
-
exemptRoles?: string[] | undefined;
|
|
7009
|
-
} | undefined;
|
|
7010
|
-
readonly auditTrail?: boolean | undefined;
|
|
7011
|
-
readonly cached?: {
|
|
7012
|
-
enabled: boolean;
|
|
7013
|
-
ttl: number;
|
|
7014
|
-
invalidateOn: string[];
|
|
7015
|
-
} | undefined;
|
|
7016
|
-
readonly dataQuality?: {
|
|
7017
|
-
uniqueness: boolean;
|
|
7018
|
-
completeness: number;
|
|
7019
|
-
accuracy?: {
|
|
7020
|
-
source: string;
|
|
7021
|
-
threshold: number;
|
|
7022
|
-
} | undefined;
|
|
7023
|
-
} | undefined;
|
|
5568
|
+
readonly trackHistory?: boolean | undefined;
|
|
7024
5569
|
readonly visibleWhen?: {
|
|
7025
5570
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7026
5571
|
source?: string | undefined;
|
|
@@ -7059,7 +5604,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7059
5604
|
} | undefined;
|
|
7060
5605
|
readonly sortable?: boolean | undefined;
|
|
7061
5606
|
readonly inlineHelpText?: string | undefined;
|
|
7062
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7063
5607
|
readonly caseSensitive?: boolean | undefined;
|
|
7064
5608
|
readonly autonumberFormat?: string | undefined;
|
|
7065
5609
|
readonly index?: boolean | undefined;
|
|
@@ -7081,7 +5625,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7081
5625
|
readonly required?: boolean | undefined;
|
|
7082
5626
|
readonly multiple?: boolean | undefined;
|
|
7083
5627
|
readonly dependencies?: string[] | undefined;
|
|
7084
|
-
readonly theme?: string | undefined;
|
|
7085
5628
|
readonly externalId?: boolean | undefined;
|
|
7086
5629
|
readonly defaultValue?: unknown;
|
|
7087
5630
|
readonly group?: string | undefined;
|
|
@@ -7089,23 +5632,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7089
5632
|
readonly system?: boolean | undefined;
|
|
7090
5633
|
readonly min?: number | undefined;
|
|
7091
5634
|
readonly max?: number | undefined;
|
|
7092
|
-
readonly encryptionConfig?: {
|
|
7093
|
-
enabled: boolean;
|
|
7094
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
7095
|
-
keyManagement: {
|
|
7096
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
7097
|
-
keyId?: string | undefined;
|
|
7098
|
-
rotationPolicy?: {
|
|
7099
|
-
enabled: boolean;
|
|
7100
|
-
frequencyDays: number;
|
|
7101
|
-
retainOldVersions: number;
|
|
7102
|
-
autoRotate: boolean;
|
|
7103
|
-
} | undefined;
|
|
7104
|
-
};
|
|
7105
|
-
scope: "record" | "field" | "table" | "database";
|
|
7106
|
-
deterministicEncryption: boolean;
|
|
7107
|
-
searchableEncryption: boolean;
|
|
7108
|
-
} | undefined;
|
|
7109
5635
|
readonly columnName?: string | undefined;
|
|
7110
5636
|
readonly searchable?: boolean | undefined;
|
|
7111
5637
|
readonly unique?: boolean | undefined;
|
|
@@ -7114,7 +5640,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7114
5640
|
readonly scale?: number | undefined;
|
|
7115
5641
|
readonly reference?: string | undefined;
|
|
7116
5642
|
readonly referenceFilters?: string[] | undefined;
|
|
7117
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7118
5643
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7119
5644
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7120
5645
|
readonly inlineTitle?: string | undefined;
|
|
@@ -7139,22 +5664,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
7139
5664
|
relationshipField?: string | undefined;
|
|
7140
5665
|
} | undefined;
|
|
7141
5666
|
readonly language?: string | undefined;
|
|
7142
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7143
5667
|
readonly maxRating?: number | undefined;
|
|
7144
|
-
readonly allowHalf?: boolean | undefined;
|
|
7145
|
-
readonly displayMap?: boolean | undefined;
|
|
7146
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
7147
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
7148
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
7149
|
-
readonly allowAlpha?: boolean | undefined;
|
|
7150
|
-
readonly presetColors?: string[] | undefined;
|
|
7151
5668
|
readonly step?: number | undefined;
|
|
7152
|
-
readonly showValue?: boolean | undefined;
|
|
7153
|
-
readonly marks?: Record<string, string> | undefined;
|
|
7154
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
7155
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
7156
|
-
readonly displayValue?: boolean | undefined;
|
|
7157
|
-
readonly allowScanning?: boolean | undefined;
|
|
7158
5669
|
readonly currencyConfig?: {
|
|
7159
5670
|
precision: number;
|
|
7160
5671
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -7208,29 +5719,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7208
5719
|
} | undefined;
|
|
7209
5720
|
maxVersions?: number | undefined;
|
|
7210
5721
|
} | undefined;
|
|
7211
|
-
readonly
|
|
7212
|
-
field: string;
|
|
7213
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
7214
|
-
preserveFormat: boolean;
|
|
7215
|
-
preserveLength: boolean;
|
|
7216
|
-
pattern?: string | undefined;
|
|
7217
|
-
roles?: string[] | undefined;
|
|
7218
|
-
exemptRoles?: string[] | undefined;
|
|
7219
|
-
} | undefined;
|
|
7220
|
-
readonly auditTrail?: boolean | undefined;
|
|
7221
|
-
readonly cached?: {
|
|
7222
|
-
enabled: boolean;
|
|
7223
|
-
ttl: number;
|
|
7224
|
-
invalidateOn: string[];
|
|
7225
|
-
} | undefined;
|
|
7226
|
-
readonly dataQuality?: {
|
|
7227
|
-
uniqueness: boolean;
|
|
7228
|
-
completeness: number;
|
|
7229
|
-
accuracy?: {
|
|
7230
|
-
source: string;
|
|
7231
|
-
threshold: number;
|
|
7232
|
-
} | undefined;
|
|
7233
|
-
} | undefined;
|
|
5722
|
+
readonly trackHistory?: boolean | undefined;
|
|
7234
5723
|
readonly visibleWhen?: {
|
|
7235
5724
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7236
5725
|
source?: string | undefined;
|
|
@@ -7269,7 +5758,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7269
5758
|
} | undefined;
|
|
7270
5759
|
readonly sortable?: boolean | undefined;
|
|
7271
5760
|
readonly inlineHelpText?: string | undefined;
|
|
7272
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7273
5761
|
readonly caseSensitive?: boolean | undefined;
|
|
7274
5762
|
readonly autonumberFormat?: string | undefined;
|
|
7275
5763
|
readonly index?: boolean | undefined;
|
|
@@ -7291,7 +5779,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7291
5779
|
readonly required?: boolean | undefined;
|
|
7292
5780
|
readonly multiple?: boolean | undefined;
|
|
7293
5781
|
readonly dependencies?: string[] | undefined;
|
|
7294
|
-
readonly theme?: string | undefined;
|
|
7295
5782
|
readonly externalId?: boolean | undefined;
|
|
7296
5783
|
readonly defaultValue?: unknown;
|
|
7297
5784
|
readonly group?: string | undefined;
|
|
@@ -7299,23 +5786,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7299
5786
|
readonly system?: boolean | undefined;
|
|
7300
5787
|
readonly min?: number | undefined;
|
|
7301
5788
|
readonly max?: number | undefined;
|
|
7302
|
-
readonly encryptionConfig?: {
|
|
7303
|
-
enabled: boolean;
|
|
7304
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
7305
|
-
keyManagement: {
|
|
7306
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
7307
|
-
keyId?: string | undefined;
|
|
7308
|
-
rotationPolicy?: {
|
|
7309
|
-
enabled: boolean;
|
|
7310
|
-
frequencyDays: number;
|
|
7311
|
-
retainOldVersions: number;
|
|
7312
|
-
autoRotate: boolean;
|
|
7313
|
-
} | undefined;
|
|
7314
|
-
};
|
|
7315
|
-
scope: "record" | "field" | "table" | "database";
|
|
7316
|
-
deterministicEncryption: boolean;
|
|
7317
|
-
searchableEncryption: boolean;
|
|
7318
|
-
} | undefined;
|
|
7319
5789
|
readonly columnName?: string | undefined;
|
|
7320
5790
|
readonly searchable?: boolean | undefined;
|
|
7321
5791
|
readonly unique?: boolean | undefined;
|
|
@@ -7324,7 +5794,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7324
5794
|
readonly scale?: number | undefined;
|
|
7325
5795
|
readonly reference?: string | undefined;
|
|
7326
5796
|
readonly referenceFilters?: string[] | undefined;
|
|
7327
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7328
5797
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7329
5798
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7330
5799
|
readonly inlineTitle?: string | undefined;
|
|
@@ -7349,22 +5818,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
7349
5818
|
relationshipField?: string | undefined;
|
|
7350
5819
|
} | undefined;
|
|
7351
5820
|
readonly language?: string | undefined;
|
|
7352
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7353
5821
|
readonly maxRating?: number | undefined;
|
|
7354
|
-
readonly allowHalf?: boolean | undefined;
|
|
7355
|
-
readonly displayMap?: boolean | undefined;
|
|
7356
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
7357
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
7358
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
7359
|
-
readonly allowAlpha?: boolean | undefined;
|
|
7360
|
-
readonly presetColors?: string[] | undefined;
|
|
7361
5822
|
readonly step?: number | undefined;
|
|
7362
|
-
readonly showValue?: boolean | undefined;
|
|
7363
|
-
readonly marks?: Record<string, string> | undefined;
|
|
7364
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
7365
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
7366
|
-
readonly displayValue?: boolean | undefined;
|
|
7367
|
-
readonly allowScanning?: boolean | undefined;
|
|
7368
5823
|
readonly currencyConfig?: {
|
|
7369
5824
|
precision: number;
|
|
7370
5825
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -7418,29 +5873,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7418
5873
|
} | undefined;
|
|
7419
5874
|
maxVersions?: number | undefined;
|
|
7420
5875
|
} | undefined;
|
|
7421
|
-
readonly
|
|
7422
|
-
field: string;
|
|
7423
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
7424
|
-
preserveFormat: boolean;
|
|
7425
|
-
preserveLength: boolean;
|
|
7426
|
-
pattern?: string | undefined;
|
|
7427
|
-
roles?: string[] | undefined;
|
|
7428
|
-
exemptRoles?: string[] | undefined;
|
|
7429
|
-
} | undefined;
|
|
7430
|
-
readonly auditTrail?: boolean | undefined;
|
|
7431
|
-
readonly cached?: {
|
|
7432
|
-
enabled: boolean;
|
|
7433
|
-
ttl: number;
|
|
7434
|
-
invalidateOn: string[];
|
|
7435
|
-
} | undefined;
|
|
7436
|
-
readonly dataQuality?: {
|
|
7437
|
-
uniqueness: boolean;
|
|
7438
|
-
completeness: number;
|
|
7439
|
-
accuracy?: {
|
|
7440
|
-
source: string;
|
|
7441
|
-
threshold: number;
|
|
7442
|
-
} | undefined;
|
|
7443
|
-
} | undefined;
|
|
5876
|
+
readonly trackHistory?: boolean | undefined;
|
|
7444
5877
|
readonly visibleWhen?: {
|
|
7445
5878
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7446
5879
|
source?: string | undefined;
|
|
@@ -7479,7 +5912,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7479
5912
|
} | undefined;
|
|
7480
5913
|
readonly sortable?: boolean | undefined;
|
|
7481
5914
|
readonly inlineHelpText?: string | undefined;
|
|
7482
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7483
5915
|
readonly caseSensitive?: boolean | undefined;
|
|
7484
5916
|
readonly autonumberFormat?: string | undefined;
|
|
7485
5917
|
readonly index?: boolean | undefined;
|
|
@@ -7501,7 +5933,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7501
5933
|
readonly required?: boolean | undefined;
|
|
7502
5934
|
readonly multiple?: boolean | undefined;
|
|
7503
5935
|
readonly dependencies?: string[] | undefined;
|
|
7504
|
-
readonly theme?: string | undefined;
|
|
7505
5936
|
readonly externalId?: boolean | undefined;
|
|
7506
5937
|
readonly defaultValue?: unknown;
|
|
7507
5938
|
readonly group?: string | undefined;
|
|
@@ -7509,23 +5940,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7509
5940
|
readonly system?: boolean | undefined;
|
|
7510
5941
|
readonly min?: number | undefined;
|
|
7511
5942
|
readonly max?: number | undefined;
|
|
7512
|
-
readonly encryptionConfig?: {
|
|
7513
|
-
enabled: boolean;
|
|
7514
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
7515
|
-
keyManagement: {
|
|
7516
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
7517
|
-
keyId?: string | undefined;
|
|
7518
|
-
rotationPolicy?: {
|
|
7519
|
-
enabled: boolean;
|
|
7520
|
-
frequencyDays: number;
|
|
7521
|
-
retainOldVersions: number;
|
|
7522
|
-
autoRotate: boolean;
|
|
7523
|
-
} | undefined;
|
|
7524
|
-
};
|
|
7525
|
-
scope: "record" | "field" | "table" | "database";
|
|
7526
|
-
deterministicEncryption: boolean;
|
|
7527
|
-
searchableEncryption: boolean;
|
|
7528
|
-
} | undefined;
|
|
7529
5943
|
readonly columnName?: string | undefined;
|
|
7530
5944
|
readonly searchable?: boolean | undefined;
|
|
7531
5945
|
readonly unique?: boolean | undefined;
|
|
@@ -7534,7 +5948,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7534
5948
|
readonly scale?: number | undefined;
|
|
7535
5949
|
readonly reference?: string | undefined;
|
|
7536
5950
|
readonly referenceFilters?: string[] | undefined;
|
|
7537
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7538
5951
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7539
5952
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7540
5953
|
readonly inlineTitle?: string | undefined;
|
|
@@ -7559,22 +5972,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
7559
5972
|
relationshipField?: string | undefined;
|
|
7560
5973
|
} | undefined;
|
|
7561
5974
|
readonly language?: string | undefined;
|
|
7562
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7563
5975
|
readonly maxRating?: number | undefined;
|
|
7564
|
-
readonly allowHalf?: boolean | undefined;
|
|
7565
|
-
readonly displayMap?: boolean | undefined;
|
|
7566
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
7567
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
7568
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
7569
|
-
readonly allowAlpha?: boolean | undefined;
|
|
7570
|
-
readonly presetColors?: string[] | undefined;
|
|
7571
5976
|
readonly step?: number | undefined;
|
|
7572
|
-
readonly showValue?: boolean | undefined;
|
|
7573
|
-
readonly marks?: Record<string, string> | undefined;
|
|
7574
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
7575
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
7576
|
-
readonly displayValue?: boolean | undefined;
|
|
7577
|
-
readonly allowScanning?: boolean | undefined;
|
|
7578
5977
|
readonly currencyConfig?: {
|
|
7579
5978
|
precision: number;
|
|
7580
5979
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -7628,29 +6027,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7628
6027
|
} | undefined;
|
|
7629
6028
|
maxVersions?: number | undefined;
|
|
7630
6029
|
} | undefined;
|
|
7631
|
-
readonly
|
|
7632
|
-
field: string;
|
|
7633
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
7634
|
-
preserveFormat: boolean;
|
|
7635
|
-
preserveLength: boolean;
|
|
7636
|
-
pattern?: string | undefined;
|
|
7637
|
-
roles?: string[] | undefined;
|
|
7638
|
-
exemptRoles?: string[] | undefined;
|
|
7639
|
-
} | undefined;
|
|
7640
|
-
readonly auditTrail?: boolean | undefined;
|
|
7641
|
-
readonly cached?: {
|
|
7642
|
-
enabled: boolean;
|
|
7643
|
-
ttl: number;
|
|
7644
|
-
invalidateOn: string[];
|
|
7645
|
-
} | undefined;
|
|
7646
|
-
readonly dataQuality?: {
|
|
7647
|
-
uniqueness: boolean;
|
|
7648
|
-
completeness: number;
|
|
7649
|
-
accuracy?: {
|
|
7650
|
-
source: string;
|
|
7651
|
-
threshold: number;
|
|
7652
|
-
} | undefined;
|
|
7653
|
-
} | undefined;
|
|
6030
|
+
readonly trackHistory?: boolean | undefined;
|
|
7654
6031
|
readonly visibleWhen?: {
|
|
7655
6032
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7656
6033
|
source?: string | undefined;
|
|
@@ -7689,7 +6066,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7689
6066
|
} | undefined;
|
|
7690
6067
|
readonly sortable?: boolean | undefined;
|
|
7691
6068
|
readonly inlineHelpText?: string | undefined;
|
|
7692
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7693
6069
|
readonly caseSensitive?: boolean | undefined;
|
|
7694
6070
|
readonly autonumberFormat?: string | undefined;
|
|
7695
6071
|
readonly index?: boolean | undefined;
|
|
@@ -7711,7 +6087,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7711
6087
|
readonly required?: boolean | undefined;
|
|
7712
6088
|
readonly multiple?: boolean | undefined;
|
|
7713
6089
|
readonly dependencies?: string[] | undefined;
|
|
7714
|
-
readonly theme?: string | undefined;
|
|
7715
6090
|
readonly externalId?: boolean | undefined;
|
|
7716
6091
|
readonly defaultValue?: unknown;
|
|
7717
6092
|
readonly group?: string | undefined;
|
|
@@ -7719,23 +6094,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7719
6094
|
readonly system?: boolean | undefined;
|
|
7720
6095
|
readonly min?: number | undefined;
|
|
7721
6096
|
readonly max?: number | undefined;
|
|
7722
|
-
readonly encryptionConfig?: {
|
|
7723
|
-
enabled: boolean;
|
|
7724
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
7725
|
-
keyManagement: {
|
|
7726
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
7727
|
-
keyId?: string | undefined;
|
|
7728
|
-
rotationPolicy?: {
|
|
7729
|
-
enabled: boolean;
|
|
7730
|
-
frequencyDays: number;
|
|
7731
|
-
retainOldVersions: number;
|
|
7732
|
-
autoRotate: boolean;
|
|
7733
|
-
} | undefined;
|
|
7734
|
-
};
|
|
7735
|
-
scope: "record" | "field" | "table" | "database";
|
|
7736
|
-
deterministicEncryption: boolean;
|
|
7737
|
-
searchableEncryption: boolean;
|
|
7738
|
-
} | undefined;
|
|
7739
6097
|
readonly columnName?: string | undefined;
|
|
7740
6098
|
readonly searchable?: boolean | undefined;
|
|
7741
6099
|
readonly unique?: boolean | undefined;
|
|
@@ -7744,7 +6102,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7744
6102
|
readonly scale?: number | undefined;
|
|
7745
6103
|
readonly reference?: string | undefined;
|
|
7746
6104
|
readonly referenceFilters?: string[] | undefined;
|
|
7747
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7748
6105
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7749
6106
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7750
6107
|
readonly inlineTitle?: string | undefined;
|
|
@@ -7769,22 +6126,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
7769
6126
|
relationshipField?: string | undefined;
|
|
7770
6127
|
} | undefined;
|
|
7771
6128
|
readonly language?: string | undefined;
|
|
7772
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7773
6129
|
readonly maxRating?: number | undefined;
|
|
7774
|
-
readonly allowHalf?: boolean | undefined;
|
|
7775
|
-
readonly displayMap?: boolean | undefined;
|
|
7776
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
7777
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
7778
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
7779
|
-
readonly allowAlpha?: boolean | undefined;
|
|
7780
|
-
readonly presetColors?: string[] | undefined;
|
|
7781
6130
|
readonly step?: number | undefined;
|
|
7782
|
-
readonly showValue?: boolean | undefined;
|
|
7783
|
-
readonly marks?: Record<string, string> | undefined;
|
|
7784
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
7785
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
7786
|
-
readonly displayValue?: boolean | undefined;
|
|
7787
|
-
readonly allowScanning?: boolean | undefined;
|
|
7788
6131
|
readonly currencyConfig?: {
|
|
7789
6132
|
precision: number;
|
|
7790
6133
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -7838,29 +6181,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7838
6181
|
} | undefined;
|
|
7839
6182
|
maxVersions?: number | undefined;
|
|
7840
6183
|
} | undefined;
|
|
7841
|
-
readonly
|
|
7842
|
-
field: string;
|
|
7843
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
7844
|
-
preserveFormat: boolean;
|
|
7845
|
-
preserveLength: boolean;
|
|
7846
|
-
pattern?: string | undefined;
|
|
7847
|
-
roles?: string[] | undefined;
|
|
7848
|
-
exemptRoles?: string[] | undefined;
|
|
7849
|
-
} | undefined;
|
|
7850
|
-
readonly auditTrail?: boolean | undefined;
|
|
7851
|
-
readonly cached?: {
|
|
7852
|
-
enabled: boolean;
|
|
7853
|
-
ttl: number;
|
|
7854
|
-
invalidateOn: string[];
|
|
7855
|
-
} | undefined;
|
|
7856
|
-
readonly dataQuality?: {
|
|
7857
|
-
uniqueness: boolean;
|
|
7858
|
-
completeness: number;
|
|
7859
|
-
accuracy?: {
|
|
7860
|
-
source: string;
|
|
7861
|
-
threshold: number;
|
|
7862
|
-
} | undefined;
|
|
7863
|
-
} | undefined;
|
|
6184
|
+
readonly trackHistory?: boolean | undefined;
|
|
7864
6185
|
readonly visibleWhen?: {
|
|
7865
6186
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7866
6187
|
source?: string | undefined;
|
|
@@ -7899,7 +6220,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7899
6220
|
} | undefined;
|
|
7900
6221
|
readonly sortable?: boolean | undefined;
|
|
7901
6222
|
readonly inlineHelpText?: string | undefined;
|
|
7902
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7903
6223
|
readonly caseSensitive?: boolean | undefined;
|
|
7904
6224
|
readonly autonumberFormat?: string | undefined;
|
|
7905
6225
|
readonly index?: boolean | undefined;
|
|
@@ -7921,7 +6241,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7921
6241
|
readonly required?: boolean | undefined;
|
|
7922
6242
|
readonly multiple?: boolean | undefined;
|
|
7923
6243
|
readonly dependencies?: string[] | undefined;
|
|
7924
|
-
readonly theme?: string | undefined;
|
|
7925
6244
|
readonly externalId?: boolean | undefined;
|
|
7926
6245
|
readonly defaultValue?: unknown;
|
|
7927
6246
|
readonly group?: string | undefined;
|
|
@@ -7929,23 +6248,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7929
6248
|
readonly system?: boolean | undefined;
|
|
7930
6249
|
readonly min?: number | undefined;
|
|
7931
6250
|
readonly max?: number | undefined;
|
|
7932
|
-
readonly encryptionConfig?: {
|
|
7933
|
-
enabled: boolean;
|
|
7934
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
7935
|
-
keyManagement: {
|
|
7936
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
7937
|
-
keyId?: string | undefined;
|
|
7938
|
-
rotationPolicy?: {
|
|
7939
|
-
enabled: boolean;
|
|
7940
|
-
frequencyDays: number;
|
|
7941
|
-
retainOldVersions: number;
|
|
7942
|
-
autoRotate: boolean;
|
|
7943
|
-
} | undefined;
|
|
7944
|
-
};
|
|
7945
|
-
scope: "record" | "field" | "table" | "database";
|
|
7946
|
-
deterministicEncryption: boolean;
|
|
7947
|
-
searchableEncryption: boolean;
|
|
7948
|
-
} | undefined;
|
|
7949
6251
|
readonly columnName?: string | undefined;
|
|
7950
6252
|
readonly searchable?: boolean | undefined;
|
|
7951
6253
|
readonly unique?: boolean | undefined;
|
|
@@ -7954,7 +6256,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7954
6256
|
readonly scale?: number | undefined;
|
|
7955
6257
|
readonly reference?: string | undefined;
|
|
7956
6258
|
readonly referenceFilters?: string[] | undefined;
|
|
7957
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7958
6259
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7959
6260
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7960
6261
|
readonly inlineTitle?: string | undefined;
|
|
@@ -7979,22 +6280,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
7979
6280
|
relationshipField?: string | undefined;
|
|
7980
6281
|
} | undefined;
|
|
7981
6282
|
readonly language?: string | undefined;
|
|
7982
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7983
6283
|
readonly maxRating?: number | undefined;
|
|
7984
|
-
readonly allowHalf?: boolean | undefined;
|
|
7985
|
-
readonly displayMap?: boolean | undefined;
|
|
7986
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
7987
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
7988
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
7989
|
-
readonly allowAlpha?: boolean | undefined;
|
|
7990
|
-
readonly presetColors?: string[] | undefined;
|
|
7991
6284
|
readonly step?: number | undefined;
|
|
7992
|
-
readonly showValue?: boolean | undefined;
|
|
7993
|
-
readonly marks?: Record<string, string> | undefined;
|
|
7994
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
7995
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
7996
|
-
readonly displayValue?: boolean | undefined;
|
|
7997
|
-
readonly allowScanning?: boolean | undefined;
|
|
7998
6285
|
readonly currencyConfig?: {
|
|
7999
6286
|
precision: number;
|
|
8000
6287
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8048,29 +6335,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
8048
6335
|
} | undefined;
|
|
8049
6336
|
maxVersions?: number | undefined;
|
|
8050
6337
|
} | undefined;
|
|
8051
|
-
readonly
|
|
8052
|
-
field: string;
|
|
8053
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
8054
|
-
preserveFormat: boolean;
|
|
8055
|
-
preserveLength: boolean;
|
|
8056
|
-
pattern?: string | undefined;
|
|
8057
|
-
roles?: string[] | undefined;
|
|
8058
|
-
exemptRoles?: string[] | undefined;
|
|
8059
|
-
} | undefined;
|
|
8060
|
-
readonly auditTrail?: boolean | undefined;
|
|
8061
|
-
readonly cached?: {
|
|
8062
|
-
enabled: boolean;
|
|
8063
|
-
ttl: number;
|
|
8064
|
-
invalidateOn: string[];
|
|
8065
|
-
} | undefined;
|
|
8066
|
-
readonly dataQuality?: {
|
|
8067
|
-
uniqueness: boolean;
|
|
8068
|
-
completeness: number;
|
|
8069
|
-
accuracy?: {
|
|
8070
|
-
source: string;
|
|
8071
|
-
threshold: number;
|
|
8072
|
-
} | undefined;
|
|
8073
|
-
} | undefined;
|
|
6338
|
+
readonly trackHistory?: boolean | undefined;
|
|
8074
6339
|
readonly visibleWhen?: {
|
|
8075
6340
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8076
6341
|
source?: string | undefined;
|
|
@@ -8109,7 +6374,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8109
6374
|
} | undefined;
|
|
8110
6375
|
readonly sortable?: boolean | undefined;
|
|
8111
6376
|
readonly inlineHelpText?: string | undefined;
|
|
8112
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8113
6377
|
readonly caseSensitive?: boolean | undefined;
|
|
8114
6378
|
readonly autonumberFormat?: string | undefined;
|
|
8115
6379
|
readonly index?: boolean | undefined;
|
|
@@ -8131,7 +6395,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8131
6395
|
readonly required?: boolean | undefined;
|
|
8132
6396
|
readonly multiple?: boolean | undefined;
|
|
8133
6397
|
readonly dependencies?: string[] | undefined;
|
|
8134
|
-
readonly theme?: string | undefined;
|
|
8135
6398
|
readonly externalId?: boolean | undefined;
|
|
8136
6399
|
readonly defaultValue?: unknown;
|
|
8137
6400
|
readonly group?: string | undefined;
|
|
@@ -8139,23 +6402,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8139
6402
|
readonly system?: boolean | undefined;
|
|
8140
6403
|
readonly min?: number | undefined;
|
|
8141
6404
|
readonly max?: number | undefined;
|
|
8142
|
-
readonly encryptionConfig?: {
|
|
8143
|
-
enabled: boolean;
|
|
8144
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8145
|
-
keyManagement: {
|
|
8146
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8147
|
-
keyId?: string | undefined;
|
|
8148
|
-
rotationPolicy?: {
|
|
8149
|
-
enabled: boolean;
|
|
8150
|
-
frequencyDays: number;
|
|
8151
|
-
retainOldVersions: number;
|
|
8152
|
-
autoRotate: boolean;
|
|
8153
|
-
} | undefined;
|
|
8154
|
-
};
|
|
8155
|
-
scope: "record" | "field" | "table" | "database";
|
|
8156
|
-
deterministicEncryption: boolean;
|
|
8157
|
-
searchableEncryption: boolean;
|
|
8158
|
-
} | undefined;
|
|
8159
6405
|
readonly columnName?: string | undefined;
|
|
8160
6406
|
readonly searchable?: boolean | undefined;
|
|
8161
6407
|
readonly unique?: boolean | undefined;
|
|
@@ -8164,7 +6410,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8164
6410
|
readonly scale?: number | undefined;
|
|
8165
6411
|
readonly reference?: string | undefined;
|
|
8166
6412
|
readonly referenceFilters?: string[] | undefined;
|
|
8167
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8168
6413
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8169
6414
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8170
6415
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8189,22 +6434,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
8189
6434
|
relationshipField?: string | undefined;
|
|
8190
6435
|
} | undefined;
|
|
8191
6436
|
readonly language?: string | undefined;
|
|
8192
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8193
6437
|
readonly maxRating?: number | undefined;
|
|
8194
|
-
readonly allowHalf?: boolean | undefined;
|
|
8195
|
-
readonly displayMap?: boolean | undefined;
|
|
8196
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
8197
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
8198
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
8199
|
-
readonly allowAlpha?: boolean | undefined;
|
|
8200
|
-
readonly presetColors?: string[] | undefined;
|
|
8201
6438
|
readonly step?: number | undefined;
|
|
8202
|
-
readonly showValue?: boolean | undefined;
|
|
8203
|
-
readonly marks?: Record<string, string> | undefined;
|
|
8204
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
8205
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
8206
|
-
readonly displayValue?: boolean | undefined;
|
|
8207
|
-
readonly allowScanning?: boolean | undefined;
|
|
8208
6439
|
readonly currencyConfig?: {
|
|
8209
6440
|
precision: number;
|
|
8210
6441
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8258,29 +6489,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
8258
6489
|
} | undefined;
|
|
8259
6490
|
maxVersions?: number | undefined;
|
|
8260
6491
|
} | undefined;
|
|
8261
|
-
readonly
|
|
8262
|
-
field: string;
|
|
8263
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
8264
|
-
preserveFormat: boolean;
|
|
8265
|
-
preserveLength: boolean;
|
|
8266
|
-
pattern?: string | undefined;
|
|
8267
|
-
roles?: string[] | undefined;
|
|
8268
|
-
exemptRoles?: string[] | undefined;
|
|
8269
|
-
} | undefined;
|
|
8270
|
-
readonly auditTrail?: boolean | undefined;
|
|
8271
|
-
readonly cached?: {
|
|
8272
|
-
enabled: boolean;
|
|
8273
|
-
ttl: number;
|
|
8274
|
-
invalidateOn: string[];
|
|
8275
|
-
} | undefined;
|
|
8276
|
-
readonly dataQuality?: {
|
|
8277
|
-
uniqueness: boolean;
|
|
8278
|
-
completeness: number;
|
|
8279
|
-
accuracy?: {
|
|
8280
|
-
source: string;
|
|
8281
|
-
threshold: number;
|
|
8282
|
-
} | undefined;
|
|
8283
|
-
} | undefined;
|
|
6492
|
+
readonly trackHistory?: boolean | undefined;
|
|
8284
6493
|
readonly visibleWhen?: {
|
|
8285
6494
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8286
6495
|
source?: string | undefined;
|
|
@@ -8319,7 +6528,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8319
6528
|
} | undefined;
|
|
8320
6529
|
readonly sortable?: boolean | undefined;
|
|
8321
6530
|
readonly inlineHelpText?: string | undefined;
|
|
8322
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8323
6531
|
readonly caseSensitive?: boolean | undefined;
|
|
8324
6532
|
readonly autonumberFormat?: string | undefined;
|
|
8325
6533
|
readonly index?: boolean | undefined;
|
|
@@ -8341,7 +6549,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8341
6549
|
readonly required?: boolean | undefined;
|
|
8342
6550
|
readonly multiple?: boolean | undefined;
|
|
8343
6551
|
readonly dependencies?: string[] | undefined;
|
|
8344
|
-
readonly theme?: string | undefined;
|
|
8345
6552
|
readonly externalId?: boolean | undefined;
|
|
8346
6553
|
readonly defaultValue?: unknown;
|
|
8347
6554
|
readonly group?: string | undefined;
|
|
@@ -8349,23 +6556,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8349
6556
|
readonly system?: boolean | undefined;
|
|
8350
6557
|
readonly min?: number | undefined;
|
|
8351
6558
|
readonly max?: number | undefined;
|
|
8352
|
-
readonly encryptionConfig?: {
|
|
8353
|
-
enabled: boolean;
|
|
8354
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8355
|
-
keyManagement: {
|
|
8356
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8357
|
-
keyId?: string | undefined;
|
|
8358
|
-
rotationPolicy?: {
|
|
8359
|
-
enabled: boolean;
|
|
8360
|
-
frequencyDays: number;
|
|
8361
|
-
retainOldVersions: number;
|
|
8362
|
-
autoRotate: boolean;
|
|
8363
|
-
} | undefined;
|
|
8364
|
-
};
|
|
8365
|
-
scope: "record" | "field" | "table" | "database";
|
|
8366
|
-
deterministicEncryption: boolean;
|
|
8367
|
-
searchableEncryption: boolean;
|
|
8368
|
-
} | undefined;
|
|
8369
6559
|
readonly columnName?: string | undefined;
|
|
8370
6560
|
readonly searchable?: boolean | undefined;
|
|
8371
6561
|
readonly unique?: boolean | undefined;
|
|
@@ -8374,7 +6564,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8374
6564
|
readonly scale?: number | undefined;
|
|
8375
6565
|
readonly reference?: string | undefined;
|
|
8376
6566
|
readonly referenceFilters?: string[] | undefined;
|
|
8377
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8378
6567
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8379
6568
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8380
6569
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8399,22 +6588,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
8399
6588
|
relationshipField?: string | undefined;
|
|
8400
6589
|
} | undefined;
|
|
8401
6590
|
readonly language?: string | undefined;
|
|
8402
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8403
6591
|
readonly maxRating?: number | undefined;
|
|
8404
|
-
readonly allowHalf?: boolean | undefined;
|
|
8405
|
-
readonly displayMap?: boolean | undefined;
|
|
8406
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
8407
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
8408
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
8409
|
-
readonly allowAlpha?: boolean | undefined;
|
|
8410
|
-
readonly presetColors?: string[] | undefined;
|
|
8411
6592
|
readonly step?: number | undefined;
|
|
8412
|
-
readonly showValue?: boolean | undefined;
|
|
8413
|
-
readonly marks?: Record<string, string> | undefined;
|
|
8414
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
8415
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
8416
|
-
readonly displayValue?: boolean | undefined;
|
|
8417
|
-
readonly allowScanning?: boolean | undefined;
|
|
8418
6593
|
readonly currencyConfig?: {
|
|
8419
6594
|
precision: number;
|
|
8420
6595
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8468,29 +6643,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
8468
6643
|
} | undefined;
|
|
8469
6644
|
maxVersions?: number | undefined;
|
|
8470
6645
|
} | undefined;
|
|
8471
|
-
readonly
|
|
8472
|
-
field: string;
|
|
8473
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
8474
|
-
preserveFormat: boolean;
|
|
8475
|
-
preserveLength: boolean;
|
|
8476
|
-
pattern?: string | undefined;
|
|
8477
|
-
roles?: string[] | undefined;
|
|
8478
|
-
exemptRoles?: string[] | undefined;
|
|
8479
|
-
} | undefined;
|
|
8480
|
-
readonly auditTrail?: boolean | undefined;
|
|
8481
|
-
readonly cached?: {
|
|
8482
|
-
enabled: boolean;
|
|
8483
|
-
ttl: number;
|
|
8484
|
-
invalidateOn: string[];
|
|
8485
|
-
} | undefined;
|
|
8486
|
-
readonly dataQuality?: {
|
|
8487
|
-
uniqueness: boolean;
|
|
8488
|
-
completeness: number;
|
|
8489
|
-
accuracy?: {
|
|
8490
|
-
source: string;
|
|
8491
|
-
threshold: number;
|
|
8492
|
-
} | undefined;
|
|
8493
|
-
} | undefined;
|
|
6646
|
+
readonly trackHistory?: boolean | undefined;
|
|
8494
6647
|
readonly visibleWhen?: {
|
|
8495
6648
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8496
6649
|
source?: string | undefined;
|
|
@@ -8529,7 +6682,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8529
6682
|
} | undefined;
|
|
8530
6683
|
readonly sortable?: boolean | undefined;
|
|
8531
6684
|
readonly inlineHelpText?: string | undefined;
|
|
8532
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8533
6685
|
readonly caseSensitive?: boolean | undefined;
|
|
8534
6686
|
readonly autonumberFormat?: string | undefined;
|
|
8535
6687
|
readonly index?: boolean | undefined;
|
|
@@ -8551,7 +6703,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8551
6703
|
readonly required?: boolean | undefined;
|
|
8552
6704
|
readonly multiple?: boolean | undefined;
|
|
8553
6705
|
readonly dependencies?: string[] | undefined;
|
|
8554
|
-
readonly theme?: string | undefined;
|
|
8555
6706
|
readonly externalId?: boolean | undefined;
|
|
8556
6707
|
readonly defaultValue?: unknown;
|
|
8557
6708
|
readonly group?: string | undefined;
|
|
@@ -8559,23 +6710,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8559
6710
|
readonly system?: boolean | undefined;
|
|
8560
6711
|
readonly min?: number | undefined;
|
|
8561
6712
|
readonly max?: number | undefined;
|
|
8562
|
-
readonly encryptionConfig?: {
|
|
8563
|
-
enabled: boolean;
|
|
8564
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8565
|
-
keyManagement: {
|
|
8566
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8567
|
-
keyId?: string | undefined;
|
|
8568
|
-
rotationPolicy?: {
|
|
8569
|
-
enabled: boolean;
|
|
8570
|
-
frequencyDays: number;
|
|
8571
|
-
retainOldVersions: number;
|
|
8572
|
-
autoRotate: boolean;
|
|
8573
|
-
} | undefined;
|
|
8574
|
-
};
|
|
8575
|
-
scope: "record" | "field" | "table" | "database";
|
|
8576
|
-
deterministicEncryption: boolean;
|
|
8577
|
-
searchableEncryption: boolean;
|
|
8578
|
-
} | undefined;
|
|
8579
6713
|
readonly columnName?: string | undefined;
|
|
8580
6714
|
readonly searchable?: boolean | undefined;
|
|
8581
6715
|
readonly unique?: boolean | undefined;
|
|
@@ -8584,7 +6718,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8584
6718
|
readonly scale?: number | undefined;
|
|
8585
6719
|
readonly reference?: string | undefined;
|
|
8586
6720
|
readonly referenceFilters?: string[] | undefined;
|
|
8587
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8588
6721
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8589
6722
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8590
6723
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8609,22 +6742,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
8609
6742
|
relationshipField?: string | undefined;
|
|
8610
6743
|
} | undefined;
|
|
8611
6744
|
readonly language?: string | undefined;
|
|
8612
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8613
6745
|
readonly maxRating?: number | undefined;
|
|
8614
|
-
readonly allowHalf?: boolean | undefined;
|
|
8615
|
-
readonly displayMap?: boolean | undefined;
|
|
8616
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
8617
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
8618
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
8619
|
-
readonly allowAlpha?: boolean | undefined;
|
|
8620
|
-
readonly presetColors?: string[] | undefined;
|
|
8621
6746
|
readonly step?: number | undefined;
|
|
8622
|
-
readonly showValue?: boolean | undefined;
|
|
8623
|
-
readonly marks?: Record<string, string> | undefined;
|
|
8624
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
8625
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
8626
|
-
readonly displayValue?: boolean | undefined;
|
|
8627
|
-
readonly allowScanning?: boolean | undefined;
|
|
8628
6747
|
readonly currencyConfig?: {
|
|
8629
6748
|
precision: number;
|
|
8630
6749
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8678,29 +6797,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
8678
6797
|
} | undefined;
|
|
8679
6798
|
maxVersions?: number | undefined;
|
|
8680
6799
|
} | undefined;
|
|
8681
|
-
readonly
|
|
8682
|
-
field: string;
|
|
8683
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
8684
|
-
preserveFormat: boolean;
|
|
8685
|
-
preserveLength: boolean;
|
|
8686
|
-
pattern?: string | undefined;
|
|
8687
|
-
roles?: string[] | undefined;
|
|
8688
|
-
exemptRoles?: string[] | undefined;
|
|
8689
|
-
} | undefined;
|
|
8690
|
-
readonly auditTrail?: boolean | undefined;
|
|
8691
|
-
readonly cached?: {
|
|
8692
|
-
enabled: boolean;
|
|
8693
|
-
ttl: number;
|
|
8694
|
-
invalidateOn: string[];
|
|
8695
|
-
} | undefined;
|
|
8696
|
-
readonly dataQuality?: {
|
|
8697
|
-
uniqueness: boolean;
|
|
8698
|
-
completeness: number;
|
|
8699
|
-
accuracy?: {
|
|
8700
|
-
source: string;
|
|
8701
|
-
threshold: number;
|
|
8702
|
-
} | undefined;
|
|
8703
|
-
} | undefined;
|
|
6800
|
+
readonly trackHistory?: boolean | undefined;
|
|
8704
6801
|
readonly visibleWhen?: {
|
|
8705
6802
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8706
6803
|
source?: string | undefined;
|
|
@@ -8739,7 +6836,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8739
6836
|
} | undefined;
|
|
8740
6837
|
readonly sortable?: boolean | undefined;
|
|
8741
6838
|
readonly inlineHelpText?: string | undefined;
|
|
8742
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8743
6839
|
readonly caseSensitive?: boolean | undefined;
|
|
8744
6840
|
readonly autonumberFormat?: string | undefined;
|
|
8745
6841
|
readonly index?: boolean | undefined;
|
|
@@ -8761,7 +6857,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8761
6857
|
readonly required?: boolean | undefined;
|
|
8762
6858
|
readonly multiple?: boolean | undefined;
|
|
8763
6859
|
readonly dependencies?: string[] | undefined;
|
|
8764
|
-
readonly theme?: string | undefined;
|
|
8765
6860
|
readonly externalId?: boolean | undefined;
|
|
8766
6861
|
readonly defaultValue?: unknown;
|
|
8767
6862
|
readonly group?: string | undefined;
|
|
@@ -8769,23 +6864,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8769
6864
|
readonly system?: boolean | undefined;
|
|
8770
6865
|
readonly min?: number | undefined;
|
|
8771
6866
|
readonly max?: number | undefined;
|
|
8772
|
-
readonly encryptionConfig?: {
|
|
8773
|
-
enabled: boolean;
|
|
8774
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8775
|
-
keyManagement: {
|
|
8776
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8777
|
-
keyId?: string | undefined;
|
|
8778
|
-
rotationPolicy?: {
|
|
8779
|
-
enabled: boolean;
|
|
8780
|
-
frequencyDays: number;
|
|
8781
|
-
retainOldVersions: number;
|
|
8782
|
-
autoRotate: boolean;
|
|
8783
|
-
} | undefined;
|
|
8784
|
-
};
|
|
8785
|
-
scope: "record" | "field" | "table" | "database";
|
|
8786
|
-
deterministicEncryption: boolean;
|
|
8787
|
-
searchableEncryption: boolean;
|
|
8788
|
-
} | undefined;
|
|
8789
6867
|
readonly columnName?: string | undefined;
|
|
8790
6868
|
readonly searchable?: boolean | undefined;
|
|
8791
6869
|
readonly unique?: boolean | undefined;
|
|
@@ -8794,7 +6872,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8794
6872
|
readonly scale?: number | undefined;
|
|
8795
6873
|
readonly reference?: string | undefined;
|
|
8796
6874
|
readonly referenceFilters?: string[] | undefined;
|
|
8797
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8798
6875
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8799
6876
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8800
6877
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8819,22 +6896,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
8819
6896
|
relationshipField?: string | undefined;
|
|
8820
6897
|
} | undefined;
|
|
8821
6898
|
readonly language?: string | undefined;
|
|
8822
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8823
6899
|
readonly maxRating?: number | undefined;
|
|
8824
|
-
readonly allowHalf?: boolean | undefined;
|
|
8825
|
-
readonly displayMap?: boolean | undefined;
|
|
8826
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
8827
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
8828
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
8829
|
-
readonly allowAlpha?: boolean | undefined;
|
|
8830
|
-
readonly presetColors?: string[] | undefined;
|
|
8831
6900
|
readonly step?: number | undefined;
|
|
8832
|
-
readonly showValue?: boolean | undefined;
|
|
8833
|
-
readonly marks?: Record<string, string> | undefined;
|
|
8834
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
8835
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
8836
|
-
readonly displayValue?: boolean | undefined;
|
|
8837
|
-
readonly allowScanning?: boolean | undefined;
|
|
8838
6901
|
readonly currencyConfig?: {
|
|
8839
6902
|
precision: number;
|
|
8840
6903
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8888,29 +6951,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
8888
6951
|
} | undefined;
|
|
8889
6952
|
maxVersions?: number | undefined;
|
|
8890
6953
|
} | undefined;
|
|
8891
|
-
readonly
|
|
8892
|
-
field: string;
|
|
8893
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
8894
|
-
preserveFormat: boolean;
|
|
8895
|
-
preserveLength: boolean;
|
|
8896
|
-
pattern?: string | undefined;
|
|
8897
|
-
roles?: string[] | undefined;
|
|
8898
|
-
exemptRoles?: string[] | undefined;
|
|
8899
|
-
} | undefined;
|
|
8900
|
-
readonly auditTrail?: boolean | undefined;
|
|
8901
|
-
readonly cached?: {
|
|
8902
|
-
enabled: boolean;
|
|
8903
|
-
ttl: number;
|
|
8904
|
-
invalidateOn: string[];
|
|
8905
|
-
} | undefined;
|
|
8906
|
-
readonly dataQuality?: {
|
|
8907
|
-
uniqueness: boolean;
|
|
8908
|
-
completeness: number;
|
|
8909
|
-
accuracy?: {
|
|
8910
|
-
source: string;
|
|
8911
|
-
threshold: number;
|
|
8912
|
-
} | undefined;
|
|
8913
|
-
} | undefined;
|
|
6954
|
+
readonly trackHistory?: boolean | undefined;
|
|
8914
6955
|
readonly visibleWhen?: {
|
|
8915
6956
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8916
6957
|
source?: string | undefined;
|
|
@@ -8949,7 +6990,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8949
6990
|
} | undefined;
|
|
8950
6991
|
readonly sortable?: boolean | undefined;
|
|
8951
6992
|
readonly inlineHelpText?: string | undefined;
|
|
8952
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8953
6993
|
readonly caseSensitive?: boolean | undefined;
|
|
8954
6994
|
readonly autonumberFormat?: string | undefined;
|
|
8955
6995
|
readonly index?: boolean | undefined;
|
|
@@ -8971,7 +7011,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8971
7011
|
readonly required?: boolean | undefined;
|
|
8972
7012
|
readonly multiple?: boolean | undefined;
|
|
8973
7013
|
readonly dependencies?: string[] | undefined;
|
|
8974
|
-
readonly theme?: string | undefined;
|
|
8975
7014
|
readonly externalId?: boolean | undefined;
|
|
8976
7015
|
readonly defaultValue?: unknown;
|
|
8977
7016
|
readonly group?: string | undefined;
|
|
@@ -8979,23 +7018,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8979
7018
|
readonly system?: boolean | undefined;
|
|
8980
7019
|
readonly min?: number | undefined;
|
|
8981
7020
|
readonly max?: number | undefined;
|
|
8982
|
-
readonly encryptionConfig?: {
|
|
8983
|
-
enabled: boolean;
|
|
8984
|
-
algorithm: "aes-256-gcm" | "aes-256-cbc" | "chacha20-poly1305";
|
|
8985
|
-
keyManagement: {
|
|
8986
|
-
provider: "local" | "aws-kms" | "azure-key-vault" | "gcp-kms" | "hashicorp-vault";
|
|
8987
|
-
keyId?: string | undefined;
|
|
8988
|
-
rotationPolicy?: {
|
|
8989
|
-
enabled: boolean;
|
|
8990
|
-
frequencyDays: number;
|
|
8991
|
-
retainOldVersions: number;
|
|
8992
|
-
autoRotate: boolean;
|
|
8993
|
-
} | undefined;
|
|
8994
|
-
};
|
|
8995
|
-
scope: "record" | "field" | "table" | "database";
|
|
8996
|
-
deterministicEncryption: boolean;
|
|
8997
|
-
searchableEncryption: boolean;
|
|
8998
|
-
} | undefined;
|
|
8999
7021
|
readonly columnName?: string | undefined;
|
|
9000
7022
|
readonly searchable?: boolean | undefined;
|
|
9001
7023
|
readonly unique?: boolean | undefined;
|
|
@@ -9004,7 +7026,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
9004
7026
|
readonly scale?: number | undefined;
|
|
9005
7027
|
readonly reference?: string | undefined;
|
|
9006
7028
|
readonly referenceFilters?: string[] | undefined;
|
|
9007
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
9008
7029
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
9009
7030
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
9010
7031
|
readonly inlineTitle?: string | undefined;
|
|
@@ -9029,22 +7050,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
9029
7050
|
relationshipField?: string | undefined;
|
|
9030
7051
|
} | undefined;
|
|
9031
7052
|
readonly language?: string | undefined;
|
|
9032
|
-
readonly lineNumbers?: boolean | undefined;
|
|
9033
7053
|
readonly maxRating?: number | undefined;
|
|
9034
|
-
readonly allowHalf?: boolean | undefined;
|
|
9035
|
-
readonly displayMap?: boolean | undefined;
|
|
9036
|
-
readonly allowGeocoding?: boolean | undefined;
|
|
9037
|
-
readonly addressFormat?: "us" | "uk" | "international" | undefined;
|
|
9038
|
-
readonly colorFormat?: "hex" | "rgb" | "rgba" | "hsl" | undefined;
|
|
9039
|
-
readonly allowAlpha?: boolean | undefined;
|
|
9040
|
-
readonly presetColors?: string[] | undefined;
|
|
9041
7054
|
readonly step?: number | undefined;
|
|
9042
|
-
readonly showValue?: boolean | undefined;
|
|
9043
|
-
readonly marks?: Record<string, string> | undefined;
|
|
9044
|
-
readonly barcodeFormat?: "qr" | "ean13" | "ean8" | "code128" | "code39" | "upca" | "upce" | undefined;
|
|
9045
|
-
readonly qrErrorCorrection?: "L" | "M" | "Q" | "H" | undefined;
|
|
9046
|
-
readonly displayValue?: boolean | undefined;
|
|
9047
|
-
readonly allowScanning?: boolean | undefined;
|
|
9048
7055
|
readonly currencyConfig?: {
|
|
9049
7056
|
precision: number;
|
|
9050
7057
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -9098,29 +7105,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
9098
7105
|
} | undefined;
|
|
9099
7106
|
maxVersions?: number | undefined;
|
|
9100
7107
|
} | undefined;
|
|
9101
|
-
readonly
|
|
9102
|
-
field: string;
|
|
9103
|
-
strategy: "partial" | "hash" | "redact" | "tokenize" | "randomize" | "nullify" | "substitute";
|
|
9104
|
-
preserveFormat: boolean;
|
|
9105
|
-
preserveLength: boolean;
|
|
9106
|
-
pattern?: string | undefined;
|
|
9107
|
-
roles?: string[] | undefined;
|
|
9108
|
-
exemptRoles?: string[] | undefined;
|
|
9109
|
-
} | undefined;
|
|
9110
|
-
readonly auditTrail?: boolean | undefined;
|
|
9111
|
-
readonly cached?: {
|
|
9112
|
-
enabled: boolean;
|
|
9113
|
-
ttl: number;
|
|
9114
|
-
invalidateOn: string[];
|
|
9115
|
-
} | undefined;
|
|
9116
|
-
readonly dataQuality?: {
|
|
9117
|
-
uniqueness: boolean;
|
|
9118
|
-
completeness: number;
|
|
9119
|
-
accuracy?: {
|
|
9120
|
-
source: string;
|
|
9121
|
-
threshold: number;
|
|
9122
|
-
} | undefined;
|
|
9123
|
-
} | undefined;
|
|
7108
|
+
readonly trackHistory?: boolean | undefined;
|
|
9124
7109
|
readonly visibleWhen?: {
|
|
9125
7110
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9126
7111
|
source?: string | undefined;
|
|
@@ -9159,7 +7144,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
9159
7144
|
} | undefined;
|
|
9160
7145
|
readonly sortable?: boolean | undefined;
|
|
9161
7146
|
readonly inlineHelpText?: string | undefined;
|
|
9162
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
9163
7147
|
readonly caseSensitive?: boolean | undefined;
|
|
9164
7148
|
readonly autonumberFormat?: string | undefined;
|
|
9165
7149
|
readonly index?: boolean | undefined;
|