@objectstack/service-storage 9.7.0 → 9.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +90 -2066
- package/dist/index.d.ts +90 -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,28 +502,14 @@ 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";
|
|
527
510
|
defaultCurrency: string;
|
|
528
511
|
} | undefined;
|
|
512
|
+
dimensions?: number | undefined;
|
|
529
513
|
vectorConfig?: {
|
|
530
514
|
dimensions: number;
|
|
531
515
|
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
@@ -574,46 +558,8 @@ declare const SystemFile: Omit<{
|
|
|
574
558
|
} | undefined;
|
|
575
559
|
maxVersions?: number | undefined;
|
|
576
560
|
} | 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;
|
|
561
|
+
trackHistory?: boolean | undefined;
|
|
603
562
|
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
563
|
group?: string | undefined;
|
|
618
564
|
visibleWhen?: {
|
|
619
565
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -685,7 +631,6 @@ declare const SystemFile: Omit<{
|
|
|
685
631
|
} | undefined;
|
|
686
632
|
system?: boolean | undefined;
|
|
687
633
|
inlineHelpText?: string | undefined;
|
|
688
|
-
trackFeedHistory?: boolean | undefined;
|
|
689
634
|
caseSensitive?: boolean | undefined;
|
|
690
635
|
autonumberFormat?: string | undefined;
|
|
691
636
|
}>;
|
|
@@ -776,12 +721,13 @@ declare const SystemFile: Omit<{
|
|
|
776
721
|
key: string;
|
|
777
722
|
interval?: string | undefined;
|
|
778
723
|
} | undefined;
|
|
779
|
-
cdc?: {
|
|
780
|
-
enabled: boolean;
|
|
781
|
-
events: ("delete" | "update" | "insert")[];
|
|
782
|
-
destination: string;
|
|
783
|
-
} | undefined;
|
|
784
724
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
725
|
+
activityMilestones?: {
|
|
726
|
+
field: string;
|
|
727
|
+
value: string;
|
|
728
|
+
summary: string;
|
|
729
|
+
type?: string | undefined;
|
|
730
|
+
}[] | undefined;
|
|
785
731
|
displayNameField?: string | undefined;
|
|
786
732
|
recordName?: {
|
|
787
733
|
type: "text" | "autonumber";
|
|
@@ -1092,7 +1038,6 @@ declare const SystemFile: Omit<{
|
|
|
1092
1038
|
clone: boolean;
|
|
1093
1039
|
apiMethods?: ("get" | "delete" | "list" | "search" | "upsert" | "create" | "import" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
1094
1040
|
} | undefined;
|
|
1095
|
-
recordTypes?: string[] | undefined;
|
|
1096
1041
|
sharingModel?: "private" | "full" | "read" | "read_write" | undefined;
|
|
1097
1042
|
publicSharing?: {
|
|
1098
1043
|
enabled: boolean;
|
|
@@ -1149,6 +1094,8 @@ declare const SystemFile: Omit<{
|
|
|
1149
1094
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
1150
1095
|
confirmText?: string | undefined;
|
|
1151
1096
|
successMessage?: string | undefined;
|
|
1097
|
+
errorMessage?: string | undefined;
|
|
1098
|
+
undoable?: boolean | undefined;
|
|
1152
1099
|
resultDialog?: {
|
|
1153
1100
|
title?: string | undefined;
|
|
1154
1101
|
description?: string | undefined;
|
|
@@ -1239,7 +1186,6 @@ declare const SystemFile: Omit<{
|
|
|
1239
1186
|
readonly required?: boolean | undefined;
|
|
1240
1187
|
readonly multiple?: boolean | undefined;
|
|
1241
1188
|
readonly dependencies?: string[] | undefined;
|
|
1242
|
-
readonly theme?: string | undefined;
|
|
1243
1189
|
readonly externalId?: boolean | undefined;
|
|
1244
1190
|
readonly defaultValue?: unknown;
|
|
1245
1191
|
readonly group?: string | undefined;
|
|
@@ -1247,23 +1193,7 @@ declare const SystemFile: Omit<{
|
|
|
1247
1193
|
readonly system?: boolean | undefined;
|
|
1248
1194
|
readonly min?: number | undefined;
|
|
1249
1195
|
readonly max?: number | undefined;
|
|
1250
|
-
readonly
|
|
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;
|
|
1196
|
+
readonly dimensions?: number | undefined;
|
|
1267
1197
|
readonly columnName?: string | undefined;
|
|
1268
1198
|
readonly searchable?: boolean | undefined;
|
|
1269
1199
|
readonly unique?: boolean | undefined;
|
|
@@ -1272,7 +1202,6 @@ declare const SystemFile: Omit<{
|
|
|
1272
1202
|
readonly scale?: number | undefined;
|
|
1273
1203
|
readonly reference?: string | undefined;
|
|
1274
1204
|
readonly referenceFilters?: string[] | undefined;
|
|
1275
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1276
1205
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1277
1206
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1278
1207
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1297,22 +1226,8 @@ declare const SystemFile: Omit<{
|
|
|
1297
1226
|
relationshipField?: string | undefined;
|
|
1298
1227
|
} | undefined;
|
|
1299
1228
|
readonly language?: string | undefined;
|
|
1300
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1301
1229
|
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
1230
|
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
1231
|
readonly currencyConfig?: {
|
|
1317
1232
|
precision: number;
|
|
1318
1233
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1366,29 +1281,7 @@ declare const SystemFile: Omit<{
|
|
|
1366
1281
|
} | undefined;
|
|
1367
1282
|
maxVersions?: number | undefined;
|
|
1368
1283
|
} | 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;
|
|
1284
|
+
readonly trackHistory?: boolean | undefined;
|
|
1392
1285
|
readonly visibleWhen?: {
|
|
1393
1286
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1394
1287
|
source?: string | undefined;
|
|
@@ -1427,7 +1320,6 @@ declare const SystemFile: Omit<{
|
|
|
1427
1320
|
} | undefined;
|
|
1428
1321
|
readonly sortable?: boolean | undefined;
|
|
1429
1322
|
readonly inlineHelpText?: string | undefined;
|
|
1430
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1431
1323
|
readonly caseSensitive?: boolean | undefined;
|
|
1432
1324
|
readonly autonumberFormat?: string | undefined;
|
|
1433
1325
|
readonly index?: boolean | undefined;
|
|
@@ -1449,7 +1341,6 @@ declare const SystemFile: Omit<{
|
|
|
1449
1341
|
readonly required?: boolean | undefined;
|
|
1450
1342
|
readonly multiple?: boolean | undefined;
|
|
1451
1343
|
readonly dependencies?: string[] | undefined;
|
|
1452
|
-
readonly theme?: string | undefined;
|
|
1453
1344
|
readonly externalId?: boolean | undefined;
|
|
1454
1345
|
readonly defaultValue?: unknown;
|
|
1455
1346
|
readonly group?: string | undefined;
|
|
@@ -1457,23 +1348,7 @@ declare const SystemFile: Omit<{
|
|
|
1457
1348
|
readonly system?: boolean | undefined;
|
|
1458
1349
|
readonly min?: number | undefined;
|
|
1459
1350
|
readonly max?: number | undefined;
|
|
1460
|
-
readonly
|
|
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;
|
|
1351
|
+
readonly dimensions?: number | undefined;
|
|
1477
1352
|
readonly columnName?: string | undefined;
|
|
1478
1353
|
readonly searchable?: boolean | undefined;
|
|
1479
1354
|
readonly unique?: boolean | undefined;
|
|
@@ -1482,7 +1357,6 @@ declare const SystemFile: Omit<{
|
|
|
1482
1357
|
readonly scale?: number | undefined;
|
|
1483
1358
|
readonly reference?: string | undefined;
|
|
1484
1359
|
readonly referenceFilters?: string[] | undefined;
|
|
1485
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1486
1360
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1487
1361
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1488
1362
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1507,22 +1381,8 @@ declare const SystemFile: Omit<{
|
|
|
1507
1381
|
relationshipField?: string | undefined;
|
|
1508
1382
|
} | undefined;
|
|
1509
1383
|
readonly language?: string | undefined;
|
|
1510
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1511
1384
|
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
1385
|
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
1386
|
readonly currencyConfig?: {
|
|
1527
1387
|
precision: number;
|
|
1528
1388
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1576,29 +1436,7 @@ declare const SystemFile: Omit<{
|
|
|
1576
1436
|
} | undefined;
|
|
1577
1437
|
maxVersions?: number | undefined;
|
|
1578
1438
|
} | 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;
|
|
1439
|
+
readonly trackHistory?: boolean | undefined;
|
|
1602
1440
|
readonly visibleWhen?: {
|
|
1603
1441
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1604
1442
|
source?: string | undefined;
|
|
@@ -1637,7 +1475,6 @@ declare const SystemFile: Omit<{
|
|
|
1637
1475
|
} | undefined;
|
|
1638
1476
|
readonly sortable?: boolean | undefined;
|
|
1639
1477
|
readonly inlineHelpText?: string | undefined;
|
|
1640
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1641
1478
|
readonly caseSensitive?: boolean | undefined;
|
|
1642
1479
|
readonly autonumberFormat?: string | undefined;
|
|
1643
1480
|
readonly index?: boolean | undefined;
|
|
@@ -1659,7 +1496,6 @@ declare const SystemFile: Omit<{
|
|
|
1659
1496
|
readonly required?: boolean | undefined;
|
|
1660
1497
|
readonly multiple?: boolean | undefined;
|
|
1661
1498
|
readonly dependencies?: string[] | undefined;
|
|
1662
|
-
readonly theme?: string | undefined;
|
|
1663
1499
|
readonly externalId?: boolean | undefined;
|
|
1664
1500
|
readonly defaultValue?: unknown;
|
|
1665
1501
|
readonly group?: string | undefined;
|
|
@@ -1667,23 +1503,7 @@ declare const SystemFile: Omit<{
|
|
|
1667
1503
|
readonly system?: boolean | undefined;
|
|
1668
1504
|
readonly min?: number | undefined;
|
|
1669
1505
|
readonly max?: number | undefined;
|
|
1670
|
-
readonly
|
|
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;
|
|
1506
|
+
readonly dimensions?: number | undefined;
|
|
1687
1507
|
readonly columnName?: string | undefined;
|
|
1688
1508
|
readonly searchable?: boolean | undefined;
|
|
1689
1509
|
readonly unique?: boolean | undefined;
|
|
@@ -1692,7 +1512,6 @@ declare const SystemFile: Omit<{
|
|
|
1692
1512
|
readonly scale?: number | undefined;
|
|
1693
1513
|
readonly reference?: string | undefined;
|
|
1694
1514
|
readonly referenceFilters?: string[] | undefined;
|
|
1695
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1696
1515
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1697
1516
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1698
1517
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1717,22 +1536,8 @@ declare const SystemFile: Omit<{
|
|
|
1717
1536
|
relationshipField?: string | undefined;
|
|
1718
1537
|
} | undefined;
|
|
1719
1538
|
readonly language?: string | undefined;
|
|
1720
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1721
1539
|
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
1540
|
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
1541
|
readonly currencyConfig?: {
|
|
1737
1542
|
precision: number;
|
|
1738
1543
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1786,29 +1591,7 @@ declare const SystemFile: Omit<{
|
|
|
1786
1591
|
} | undefined;
|
|
1787
1592
|
maxVersions?: number | undefined;
|
|
1788
1593
|
} | 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;
|
|
1594
|
+
readonly trackHistory?: boolean | undefined;
|
|
1812
1595
|
readonly visibleWhen?: {
|
|
1813
1596
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1814
1597
|
source?: string | undefined;
|
|
@@ -1847,7 +1630,6 @@ declare const SystemFile: Omit<{
|
|
|
1847
1630
|
} | undefined;
|
|
1848
1631
|
readonly sortable?: boolean | undefined;
|
|
1849
1632
|
readonly inlineHelpText?: string | undefined;
|
|
1850
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
1851
1633
|
readonly caseSensitive?: boolean | undefined;
|
|
1852
1634
|
readonly autonumberFormat?: string | undefined;
|
|
1853
1635
|
readonly index?: boolean | undefined;
|
|
@@ -1869,7 +1651,6 @@ declare const SystemFile: Omit<{
|
|
|
1869
1651
|
readonly required?: boolean | undefined;
|
|
1870
1652
|
readonly multiple?: boolean | undefined;
|
|
1871
1653
|
readonly dependencies?: string[] | undefined;
|
|
1872
|
-
readonly theme?: string | undefined;
|
|
1873
1654
|
readonly externalId?: boolean | undefined;
|
|
1874
1655
|
readonly defaultValue?: unknown;
|
|
1875
1656
|
readonly group?: string | undefined;
|
|
@@ -1877,23 +1658,7 @@ declare const SystemFile: Omit<{
|
|
|
1877
1658
|
readonly system?: boolean | undefined;
|
|
1878
1659
|
readonly min?: number | undefined;
|
|
1879
1660
|
readonly max?: number | undefined;
|
|
1880
|
-
readonly
|
|
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;
|
|
1661
|
+
readonly dimensions?: number | undefined;
|
|
1897
1662
|
readonly columnName?: string | undefined;
|
|
1898
1663
|
readonly searchable?: boolean | undefined;
|
|
1899
1664
|
readonly unique?: boolean | undefined;
|
|
@@ -1902,7 +1667,6 @@ declare const SystemFile: Omit<{
|
|
|
1902
1667
|
readonly scale?: number | undefined;
|
|
1903
1668
|
readonly reference?: string | undefined;
|
|
1904
1669
|
readonly referenceFilters?: string[] | undefined;
|
|
1905
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
1906
1670
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
1907
1671
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
1908
1672
|
readonly inlineTitle?: string | undefined;
|
|
@@ -1927,22 +1691,8 @@ declare const SystemFile: Omit<{
|
|
|
1927
1691
|
relationshipField?: string | undefined;
|
|
1928
1692
|
} | undefined;
|
|
1929
1693
|
readonly language?: string | undefined;
|
|
1930
|
-
readonly lineNumbers?: boolean | undefined;
|
|
1931
1694
|
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
1695
|
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
1696
|
readonly currencyConfig?: {
|
|
1947
1697
|
precision: number;
|
|
1948
1698
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -1996,29 +1746,7 @@ declare const SystemFile: Omit<{
|
|
|
1996
1746
|
} | undefined;
|
|
1997
1747
|
maxVersions?: number | undefined;
|
|
1998
1748
|
} | 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;
|
|
1749
|
+
readonly trackHistory?: boolean | undefined;
|
|
2022
1750
|
readonly visibleWhen?: {
|
|
2023
1751
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2024
1752
|
source?: string | undefined;
|
|
@@ -2057,7 +1785,6 @@ declare const SystemFile: Omit<{
|
|
|
2057
1785
|
} | undefined;
|
|
2058
1786
|
readonly sortable?: boolean | undefined;
|
|
2059
1787
|
readonly inlineHelpText?: string | undefined;
|
|
2060
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2061
1788
|
readonly caseSensitive?: boolean | undefined;
|
|
2062
1789
|
readonly autonumberFormat?: string | undefined;
|
|
2063
1790
|
readonly index?: boolean | undefined;
|
|
@@ -2079,7 +1806,6 @@ declare const SystemFile: Omit<{
|
|
|
2079
1806
|
readonly required?: boolean | undefined;
|
|
2080
1807
|
readonly multiple?: boolean | undefined;
|
|
2081
1808
|
readonly dependencies?: string[] | undefined;
|
|
2082
|
-
readonly theme?: string | undefined;
|
|
2083
1809
|
readonly externalId?: boolean | undefined;
|
|
2084
1810
|
readonly defaultValue?: unknown;
|
|
2085
1811
|
readonly group?: string | undefined;
|
|
@@ -2087,23 +1813,7 @@ declare const SystemFile: Omit<{
|
|
|
2087
1813
|
readonly system?: boolean | undefined;
|
|
2088
1814
|
readonly min?: number | undefined;
|
|
2089
1815
|
readonly max?: number | undefined;
|
|
2090
|
-
readonly
|
|
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;
|
|
1816
|
+
readonly dimensions?: number | undefined;
|
|
2107
1817
|
readonly columnName?: string | undefined;
|
|
2108
1818
|
readonly searchable?: boolean | undefined;
|
|
2109
1819
|
readonly unique?: boolean | undefined;
|
|
@@ -2112,7 +1822,6 @@ declare const SystemFile: Omit<{
|
|
|
2112
1822
|
readonly scale?: number | undefined;
|
|
2113
1823
|
readonly reference?: string | undefined;
|
|
2114
1824
|
readonly referenceFilters?: string[] | undefined;
|
|
2115
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2116
1825
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2117
1826
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2118
1827
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2137,22 +1846,8 @@ declare const SystemFile: Omit<{
|
|
|
2137
1846
|
relationshipField?: string | undefined;
|
|
2138
1847
|
} | undefined;
|
|
2139
1848
|
readonly language?: string | undefined;
|
|
2140
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2141
1849
|
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
1850
|
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
1851
|
readonly currencyConfig?: {
|
|
2157
1852
|
precision: number;
|
|
2158
1853
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2206,29 +1901,7 @@ declare const SystemFile: Omit<{
|
|
|
2206
1901
|
} | undefined;
|
|
2207
1902
|
maxVersions?: number | undefined;
|
|
2208
1903
|
} | 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;
|
|
1904
|
+
readonly trackHistory?: boolean | undefined;
|
|
2232
1905
|
readonly visibleWhen?: {
|
|
2233
1906
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2234
1907
|
source?: string | undefined;
|
|
@@ -2267,7 +1940,6 @@ declare const SystemFile: Omit<{
|
|
|
2267
1940
|
} | undefined;
|
|
2268
1941
|
readonly sortable?: boolean | undefined;
|
|
2269
1942
|
readonly inlineHelpText?: string | undefined;
|
|
2270
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2271
1943
|
readonly caseSensitive?: boolean | undefined;
|
|
2272
1944
|
readonly autonumberFormat?: string | undefined;
|
|
2273
1945
|
readonly index?: boolean | undefined;
|
|
@@ -2289,7 +1961,6 @@ declare const SystemFile: Omit<{
|
|
|
2289
1961
|
readonly required?: boolean | undefined;
|
|
2290
1962
|
readonly multiple?: boolean | undefined;
|
|
2291
1963
|
readonly dependencies?: string[] | undefined;
|
|
2292
|
-
readonly theme?: string | undefined;
|
|
2293
1964
|
readonly externalId?: boolean | undefined;
|
|
2294
1965
|
readonly defaultValue?: unknown;
|
|
2295
1966
|
readonly group?: string | undefined;
|
|
@@ -2297,23 +1968,7 @@ declare const SystemFile: Omit<{
|
|
|
2297
1968
|
readonly system?: boolean | undefined;
|
|
2298
1969
|
readonly min?: number | undefined;
|
|
2299
1970
|
readonly max?: number | undefined;
|
|
2300
|
-
readonly
|
|
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;
|
|
1971
|
+
readonly dimensions?: number | undefined;
|
|
2317
1972
|
readonly columnName?: string | undefined;
|
|
2318
1973
|
readonly searchable?: boolean | undefined;
|
|
2319
1974
|
readonly unique?: boolean | undefined;
|
|
@@ -2322,7 +1977,6 @@ declare const SystemFile: Omit<{
|
|
|
2322
1977
|
readonly scale?: number | undefined;
|
|
2323
1978
|
readonly reference?: string | undefined;
|
|
2324
1979
|
readonly referenceFilters?: string[] | undefined;
|
|
2325
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2326
1980
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2327
1981
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2328
1982
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2347,22 +2001,8 @@ declare const SystemFile: Omit<{
|
|
|
2347
2001
|
relationshipField?: string | undefined;
|
|
2348
2002
|
} | undefined;
|
|
2349
2003
|
readonly language?: string | undefined;
|
|
2350
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2351
2004
|
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
2005
|
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
2006
|
readonly currencyConfig?: {
|
|
2367
2007
|
precision: number;
|
|
2368
2008
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2416,29 +2056,7 @@ declare const SystemFile: Omit<{
|
|
|
2416
2056
|
} | undefined;
|
|
2417
2057
|
maxVersions?: number | undefined;
|
|
2418
2058
|
} | 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;
|
|
2059
|
+
readonly trackHistory?: boolean | undefined;
|
|
2442
2060
|
readonly visibleWhen?: {
|
|
2443
2061
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2444
2062
|
source?: string | undefined;
|
|
@@ -2477,7 +2095,6 @@ declare const SystemFile: Omit<{
|
|
|
2477
2095
|
} | undefined;
|
|
2478
2096
|
readonly sortable?: boolean | undefined;
|
|
2479
2097
|
readonly inlineHelpText?: string | undefined;
|
|
2480
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2481
2098
|
readonly caseSensitive?: boolean | undefined;
|
|
2482
2099
|
readonly autonumberFormat?: string | undefined;
|
|
2483
2100
|
readonly index?: boolean | undefined;
|
|
@@ -2499,7 +2116,6 @@ declare const SystemFile: Omit<{
|
|
|
2499
2116
|
readonly required?: boolean | undefined;
|
|
2500
2117
|
readonly multiple?: boolean | undefined;
|
|
2501
2118
|
readonly dependencies?: string[] | undefined;
|
|
2502
|
-
readonly theme?: string | undefined;
|
|
2503
2119
|
readonly externalId?: boolean | undefined;
|
|
2504
2120
|
readonly defaultValue?: unknown;
|
|
2505
2121
|
readonly group?: string | undefined;
|
|
@@ -2507,23 +2123,7 @@ declare const SystemFile: Omit<{
|
|
|
2507
2123
|
readonly system?: boolean | undefined;
|
|
2508
2124
|
readonly min?: number | undefined;
|
|
2509
2125
|
readonly max?: number | undefined;
|
|
2510
|
-
readonly
|
|
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;
|
|
2126
|
+
readonly dimensions?: number | undefined;
|
|
2527
2127
|
readonly columnName?: string | undefined;
|
|
2528
2128
|
readonly searchable?: boolean | undefined;
|
|
2529
2129
|
readonly unique?: boolean | undefined;
|
|
@@ -2532,7 +2132,6 @@ declare const SystemFile: Omit<{
|
|
|
2532
2132
|
readonly scale?: number | undefined;
|
|
2533
2133
|
readonly reference?: string | undefined;
|
|
2534
2134
|
readonly referenceFilters?: string[] | undefined;
|
|
2535
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2536
2135
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2537
2136
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2538
2137
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2557,22 +2156,8 @@ declare const SystemFile: Omit<{
|
|
|
2557
2156
|
relationshipField?: string | undefined;
|
|
2558
2157
|
} | undefined;
|
|
2559
2158
|
readonly language?: string | undefined;
|
|
2560
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2561
2159
|
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
2160
|
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
2161
|
readonly currencyConfig?: {
|
|
2577
2162
|
precision: number;
|
|
2578
2163
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2626,29 +2211,7 @@ declare const SystemFile: Omit<{
|
|
|
2626
2211
|
} | undefined;
|
|
2627
2212
|
maxVersions?: number | undefined;
|
|
2628
2213
|
} | 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;
|
|
2214
|
+
readonly trackHistory?: boolean | undefined;
|
|
2652
2215
|
readonly visibleWhen?: {
|
|
2653
2216
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2654
2217
|
source?: string | undefined;
|
|
@@ -2687,7 +2250,6 @@ declare const SystemFile: Omit<{
|
|
|
2687
2250
|
} | undefined;
|
|
2688
2251
|
readonly sortable?: boolean | undefined;
|
|
2689
2252
|
readonly inlineHelpText?: string | undefined;
|
|
2690
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2691
2253
|
readonly caseSensitive?: boolean | undefined;
|
|
2692
2254
|
readonly autonumberFormat?: string | undefined;
|
|
2693
2255
|
readonly index?: boolean | undefined;
|
|
@@ -2709,7 +2271,6 @@ declare const SystemFile: Omit<{
|
|
|
2709
2271
|
readonly required?: boolean | undefined;
|
|
2710
2272
|
readonly multiple?: boolean | undefined;
|
|
2711
2273
|
readonly dependencies?: string[] | undefined;
|
|
2712
|
-
readonly theme?: string | undefined;
|
|
2713
2274
|
readonly externalId?: boolean | undefined;
|
|
2714
2275
|
readonly defaultValue?: unknown;
|
|
2715
2276
|
readonly group?: string | undefined;
|
|
@@ -2717,23 +2278,7 @@ declare const SystemFile: Omit<{
|
|
|
2717
2278
|
readonly system?: boolean | undefined;
|
|
2718
2279
|
readonly min?: number | undefined;
|
|
2719
2280
|
readonly max?: number | undefined;
|
|
2720
|
-
readonly
|
|
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;
|
|
2281
|
+
readonly dimensions?: number | undefined;
|
|
2737
2282
|
readonly columnName?: string | undefined;
|
|
2738
2283
|
readonly searchable?: boolean | undefined;
|
|
2739
2284
|
readonly unique?: boolean | undefined;
|
|
@@ -2742,7 +2287,6 @@ declare const SystemFile: Omit<{
|
|
|
2742
2287
|
readonly scale?: number | undefined;
|
|
2743
2288
|
readonly reference?: string | undefined;
|
|
2744
2289
|
readonly referenceFilters?: string[] | undefined;
|
|
2745
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2746
2290
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2747
2291
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2748
2292
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2767,22 +2311,8 @@ declare const SystemFile: Omit<{
|
|
|
2767
2311
|
relationshipField?: string | undefined;
|
|
2768
2312
|
} | undefined;
|
|
2769
2313
|
readonly language?: string | undefined;
|
|
2770
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2771
2314
|
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
2315
|
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
2316
|
readonly currencyConfig?: {
|
|
2787
2317
|
precision: number;
|
|
2788
2318
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -2836,29 +2366,7 @@ declare const SystemFile: Omit<{
|
|
|
2836
2366
|
} | undefined;
|
|
2837
2367
|
maxVersions?: number | undefined;
|
|
2838
2368
|
} | 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;
|
|
2369
|
+
readonly trackHistory?: boolean | undefined;
|
|
2862
2370
|
readonly visibleWhen?: {
|
|
2863
2371
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2864
2372
|
source?: string | undefined;
|
|
@@ -2897,7 +2405,6 @@ declare const SystemFile: Omit<{
|
|
|
2897
2405
|
} | undefined;
|
|
2898
2406
|
readonly sortable?: boolean | undefined;
|
|
2899
2407
|
readonly inlineHelpText?: string | undefined;
|
|
2900
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
2901
2408
|
readonly caseSensitive?: boolean | undefined;
|
|
2902
2409
|
readonly autonumberFormat?: string | undefined;
|
|
2903
2410
|
readonly index?: boolean | undefined;
|
|
@@ -2919,7 +2426,6 @@ declare const SystemFile: Omit<{
|
|
|
2919
2426
|
readonly required?: boolean | undefined;
|
|
2920
2427
|
readonly multiple?: boolean | undefined;
|
|
2921
2428
|
readonly dependencies?: string[] | undefined;
|
|
2922
|
-
readonly theme?: string | undefined;
|
|
2923
2429
|
readonly externalId?: boolean | undefined;
|
|
2924
2430
|
readonly defaultValue?: unknown;
|
|
2925
2431
|
readonly group?: string | undefined;
|
|
@@ -2927,23 +2433,7 @@ declare const SystemFile: Omit<{
|
|
|
2927
2433
|
readonly system?: boolean | undefined;
|
|
2928
2434
|
readonly min?: number | undefined;
|
|
2929
2435
|
readonly max?: number | undefined;
|
|
2930
|
-
readonly
|
|
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;
|
|
2436
|
+
readonly dimensions?: number | undefined;
|
|
2947
2437
|
readonly columnName?: string | undefined;
|
|
2948
2438
|
readonly searchable?: boolean | undefined;
|
|
2949
2439
|
readonly unique?: boolean | undefined;
|
|
@@ -2952,7 +2442,6 @@ declare const SystemFile: Omit<{
|
|
|
2952
2442
|
readonly scale?: number | undefined;
|
|
2953
2443
|
readonly reference?: string | undefined;
|
|
2954
2444
|
readonly referenceFilters?: string[] | undefined;
|
|
2955
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
2956
2445
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
2957
2446
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
2958
2447
|
readonly inlineTitle?: string | undefined;
|
|
@@ -2977,22 +2466,8 @@ declare const SystemFile: Omit<{
|
|
|
2977
2466
|
relationshipField?: string | undefined;
|
|
2978
2467
|
} | undefined;
|
|
2979
2468
|
readonly language?: string | undefined;
|
|
2980
|
-
readonly lineNumbers?: boolean | undefined;
|
|
2981
2469
|
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
2470
|
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
2471
|
readonly currencyConfig?: {
|
|
2997
2472
|
precision: number;
|
|
2998
2473
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3046,29 +2521,7 @@ declare const SystemFile: Omit<{
|
|
|
3046
2521
|
} | undefined;
|
|
3047
2522
|
maxVersions?: number | undefined;
|
|
3048
2523
|
} | 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;
|
|
2524
|
+
readonly trackHistory?: boolean | undefined;
|
|
3072
2525
|
readonly visibleWhen?: {
|
|
3073
2526
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3074
2527
|
source?: string | undefined;
|
|
@@ -3107,7 +2560,6 @@ declare const SystemFile: Omit<{
|
|
|
3107
2560
|
} | undefined;
|
|
3108
2561
|
readonly sortable?: boolean | undefined;
|
|
3109
2562
|
readonly inlineHelpText?: string | undefined;
|
|
3110
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3111
2563
|
readonly caseSensitive?: boolean | undefined;
|
|
3112
2564
|
readonly autonumberFormat?: string | undefined;
|
|
3113
2565
|
readonly index?: boolean | undefined;
|
|
@@ -3129,7 +2581,6 @@ declare const SystemFile: Omit<{
|
|
|
3129
2581
|
readonly required?: boolean | undefined;
|
|
3130
2582
|
readonly multiple?: boolean | undefined;
|
|
3131
2583
|
readonly dependencies?: string[] | undefined;
|
|
3132
|
-
readonly theme?: string | undefined;
|
|
3133
2584
|
readonly externalId?: boolean | undefined;
|
|
3134
2585
|
readonly defaultValue?: unknown;
|
|
3135
2586
|
readonly group?: string | undefined;
|
|
@@ -3137,23 +2588,7 @@ declare const SystemFile: Omit<{
|
|
|
3137
2588
|
readonly system?: boolean | undefined;
|
|
3138
2589
|
readonly min?: number | undefined;
|
|
3139
2590
|
readonly max?: number | undefined;
|
|
3140
|
-
readonly
|
|
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;
|
|
2591
|
+
readonly dimensions?: number | undefined;
|
|
3157
2592
|
readonly columnName?: string | undefined;
|
|
3158
2593
|
readonly searchable?: boolean | undefined;
|
|
3159
2594
|
readonly unique?: boolean | undefined;
|
|
@@ -3162,7 +2597,6 @@ declare const SystemFile: Omit<{
|
|
|
3162
2597
|
readonly scale?: number | undefined;
|
|
3163
2598
|
readonly reference?: string | undefined;
|
|
3164
2599
|
readonly referenceFilters?: string[] | undefined;
|
|
3165
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3166
2600
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3167
2601
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3168
2602
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3187,22 +2621,8 @@ declare const SystemFile: Omit<{
|
|
|
3187
2621
|
relationshipField?: string | undefined;
|
|
3188
2622
|
} | undefined;
|
|
3189
2623
|
readonly language?: string | undefined;
|
|
3190
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3191
2624
|
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
2625
|
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
2626
|
readonly currencyConfig?: {
|
|
3207
2627
|
precision: number;
|
|
3208
2628
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3256,29 +2676,7 @@ declare const SystemFile: Omit<{
|
|
|
3256
2676
|
} | undefined;
|
|
3257
2677
|
maxVersions?: number | undefined;
|
|
3258
2678
|
} | 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;
|
|
2679
|
+
readonly trackHistory?: boolean | undefined;
|
|
3282
2680
|
readonly visibleWhen?: {
|
|
3283
2681
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3284
2682
|
source?: string | undefined;
|
|
@@ -3317,7 +2715,6 @@ declare const SystemFile: Omit<{
|
|
|
3317
2715
|
} | undefined;
|
|
3318
2716
|
readonly sortable?: boolean | undefined;
|
|
3319
2717
|
readonly inlineHelpText?: string | undefined;
|
|
3320
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3321
2718
|
readonly caseSensitive?: boolean | undefined;
|
|
3322
2719
|
readonly autonumberFormat?: string | undefined;
|
|
3323
2720
|
readonly index?: boolean | undefined;
|
|
@@ -3339,7 +2736,6 @@ declare const SystemFile: Omit<{
|
|
|
3339
2736
|
readonly required?: boolean | undefined;
|
|
3340
2737
|
readonly multiple?: boolean | undefined;
|
|
3341
2738
|
readonly dependencies?: string[] | undefined;
|
|
3342
|
-
readonly theme?: string | undefined;
|
|
3343
2739
|
readonly externalId?: boolean | undefined;
|
|
3344
2740
|
readonly defaultValue?: unknown;
|
|
3345
2741
|
readonly group?: string | undefined;
|
|
@@ -3347,23 +2743,7 @@ declare const SystemFile: Omit<{
|
|
|
3347
2743
|
readonly system?: boolean | undefined;
|
|
3348
2744
|
readonly min?: number | undefined;
|
|
3349
2745
|
readonly max?: number | undefined;
|
|
3350
|
-
readonly
|
|
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;
|
|
2746
|
+
readonly dimensions?: number | undefined;
|
|
3367
2747
|
readonly columnName?: string | undefined;
|
|
3368
2748
|
readonly searchable?: boolean | undefined;
|
|
3369
2749
|
readonly unique?: boolean | undefined;
|
|
@@ -3372,7 +2752,6 @@ declare const SystemFile: Omit<{
|
|
|
3372
2752
|
readonly scale?: number | undefined;
|
|
3373
2753
|
readonly reference?: string | undefined;
|
|
3374
2754
|
readonly referenceFilters?: string[] | undefined;
|
|
3375
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3376
2755
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3377
2756
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3378
2757
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3397,22 +2776,8 @@ declare const SystemFile: Omit<{
|
|
|
3397
2776
|
relationshipField?: string | undefined;
|
|
3398
2777
|
} | undefined;
|
|
3399
2778
|
readonly language?: string | undefined;
|
|
3400
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3401
2779
|
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
2780
|
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
2781
|
readonly currencyConfig?: {
|
|
3417
2782
|
precision: number;
|
|
3418
2783
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3466,29 +2831,7 @@ declare const SystemFile: Omit<{
|
|
|
3466
2831
|
} | undefined;
|
|
3467
2832
|
maxVersions?: number | undefined;
|
|
3468
2833
|
} | 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;
|
|
2834
|
+
readonly trackHistory?: boolean | undefined;
|
|
3492
2835
|
readonly visibleWhen?: {
|
|
3493
2836
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3494
2837
|
source?: string | undefined;
|
|
@@ -3527,7 +2870,6 @@ declare const SystemFile: Omit<{
|
|
|
3527
2870
|
} | undefined;
|
|
3528
2871
|
readonly sortable?: boolean | undefined;
|
|
3529
2872
|
readonly inlineHelpText?: string | undefined;
|
|
3530
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3531
2873
|
readonly caseSensitive?: boolean | undefined;
|
|
3532
2874
|
readonly autonumberFormat?: string | undefined;
|
|
3533
2875
|
readonly index?: boolean | undefined;
|
|
@@ -3549,7 +2891,6 @@ declare const SystemFile: Omit<{
|
|
|
3549
2891
|
readonly required?: boolean | undefined;
|
|
3550
2892
|
readonly multiple?: boolean | undefined;
|
|
3551
2893
|
readonly dependencies?: string[] | undefined;
|
|
3552
|
-
readonly theme?: string | undefined;
|
|
3553
2894
|
readonly externalId?: boolean | undefined;
|
|
3554
2895
|
readonly defaultValue?: unknown;
|
|
3555
2896
|
readonly group?: string | undefined;
|
|
@@ -3557,23 +2898,7 @@ declare const SystemFile: Omit<{
|
|
|
3557
2898
|
readonly system?: boolean | undefined;
|
|
3558
2899
|
readonly min?: number | undefined;
|
|
3559
2900
|
readonly max?: number | undefined;
|
|
3560
|
-
readonly
|
|
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;
|
|
2901
|
+
readonly dimensions?: number | undefined;
|
|
3577
2902
|
readonly columnName?: string | undefined;
|
|
3578
2903
|
readonly searchable?: boolean | undefined;
|
|
3579
2904
|
readonly unique?: boolean | undefined;
|
|
@@ -3582,7 +2907,6 @@ declare const SystemFile: Omit<{
|
|
|
3582
2907
|
readonly scale?: number | undefined;
|
|
3583
2908
|
readonly reference?: string | undefined;
|
|
3584
2909
|
readonly referenceFilters?: string[] | undefined;
|
|
3585
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3586
2910
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3587
2911
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3588
2912
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3607,22 +2931,8 @@ declare const SystemFile: Omit<{
|
|
|
3607
2931
|
relationshipField?: string | undefined;
|
|
3608
2932
|
} | undefined;
|
|
3609
2933
|
readonly language?: string | undefined;
|
|
3610
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3611
2934
|
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
2935
|
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
2936
|
readonly currencyConfig?: {
|
|
3627
2937
|
precision: number;
|
|
3628
2938
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3676,29 +2986,7 @@ declare const SystemFile: Omit<{
|
|
|
3676
2986
|
} | undefined;
|
|
3677
2987
|
maxVersions?: number | undefined;
|
|
3678
2988
|
} | 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;
|
|
2989
|
+
readonly trackHistory?: boolean | undefined;
|
|
3702
2990
|
readonly visibleWhen?: {
|
|
3703
2991
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3704
2992
|
source?: string | undefined;
|
|
@@ -3737,7 +3025,6 @@ declare const SystemFile: Omit<{
|
|
|
3737
3025
|
} | undefined;
|
|
3738
3026
|
readonly sortable?: boolean | undefined;
|
|
3739
3027
|
readonly inlineHelpText?: string | undefined;
|
|
3740
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3741
3028
|
readonly caseSensitive?: boolean | undefined;
|
|
3742
3029
|
readonly autonumberFormat?: string | undefined;
|
|
3743
3030
|
readonly index?: boolean | undefined;
|
|
@@ -3759,7 +3046,6 @@ declare const SystemFile: Omit<{
|
|
|
3759
3046
|
readonly required?: boolean | undefined;
|
|
3760
3047
|
readonly multiple?: boolean | undefined;
|
|
3761
3048
|
readonly dependencies?: string[] | undefined;
|
|
3762
|
-
readonly theme?: string | undefined;
|
|
3763
3049
|
readonly externalId?: boolean | undefined;
|
|
3764
3050
|
readonly defaultValue?: unknown;
|
|
3765
3051
|
readonly group?: string | undefined;
|
|
@@ -3767,23 +3053,7 @@ declare const SystemFile: Omit<{
|
|
|
3767
3053
|
readonly system?: boolean | undefined;
|
|
3768
3054
|
readonly min?: number | undefined;
|
|
3769
3055
|
readonly max?: number | undefined;
|
|
3770
|
-
readonly
|
|
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;
|
|
3056
|
+
readonly dimensions?: number | undefined;
|
|
3787
3057
|
readonly columnName?: string | undefined;
|
|
3788
3058
|
readonly searchable?: boolean | undefined;
|
|
3789
3059
|
readonly unique?: boolean | undefined;
|
|
@@ -3792,7 +3062,6 @@ declare const SystemFile: Omit<{
|
|
|
3792
3062
|
readonly scale?: number | undefined;
|
|
3793
3063
|
readonly reference?: string | undefined;
|
|
3794
3064
|
readonly referenceFilters?: string[] | undefined;
|
|
3795
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
3796
3065
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
3797
3066
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
3798
3067
|
readonly inlineTitle?: string | undefined;
|
|
@@ -3817,22 +3086,8 @@ declare const SystemFile: Omit<{
|
|
|
3817
3086
|
relationshipField?: string | undefined;
|
|
3818
3087
|
} | undefined;
|
|
3819
3088
|
readonly language?: string | undefined;
|
|
3820
|
-
readonly lineNumbers?: boolean | undefined;
|
|
3821
3089
|
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
3090
|
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
3091
|
readonly currencyConfig?: {
|
|
3837
3092
|
precision: number;
|
|
3838
3093
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -3886,29 +3141,7 @@ declare const SystemFile: Omit<{
|
|
|
3886
3141
|
} | undefined;
|
|
3887
3142
|
maxVersions?: number | undefined;
|
|
3888
3143
|
} | 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;
|
|
3144
|
+
readonly trackHistory?: boolean | undefined;
|
|
3912
3145
|
readonly visibleWhen?: {
|
|
3913
3146
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3914
3147
|
source?: string | undefined;
|
|
@@ -3947,7 +3180,6 @@ declare const SystemFile: Omit<{
|
|
|
3947
3180
|
} | undefined;
|
|
3948
3181
|
readonly sortable?: boolean | undefined;
|
|
3949
3182
|
readonly inlineHelpText?: string | undefined;
|
|
3950
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
3951
3183
|
readonly caseSensitive?: boolean | undefined;
|
|
3952
3184
|
readonly autonumberFormat?: string | undefined;
|
|
3953
3185
|
readonly index?: boolean | undefined;
|
|
@@ -3969,7 +3201,6 @@ declare const SystemFile: Omit<{
|
|
|
3969
3201
|
readonly required?: boolean | undefined;
|
|
3970
3202
|
readonly multiple?: boolean | undefined;
|
|
3971
3203
|
readonly dependencies?: string[] | undefined;
|
|
3972
|
-
readonly theme?: string | undefined;
|
|
3973
3204
|
readonly externalId?: boolean | undefined;
|
|
3974
3205
|
readonly defaultValue?: unknown;
|
|
3975
3206
|
readonly group?: string | undefined;
|
|
@@ -3977,23 +3208,7 @@ declare const SystemFile: Omit<{
|
|
|
3977
3208
|
readonly system?: boolean | undefined;
|
|
3978
3209
|
readonly min?: number | undefined;
|
|
3979
3210
|
readonly max?: number | undefined;
|
|
3980
|
-
readonly
|
|
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;
|
|
3211
|
+
readonly dimensions?: number | undefined;
|
|
3997
3212
|
readonly columnName?: string | undefined;
|
|
3998
3213
|
readonly searchable?: boolean | undefined;
|
|
3999
3214
|
readonly unique?: boolean | undefined;
|
|
@@ -4002,7 +3217,6 @@ declare const SystemFile: Omit<{
|
|
|
4002
3217
|
readonly scale?: number | undefined;
|
|
4003
3218
|
readonly reference?: string | undefined;
|
|
4004
3219
|
readonly referenceFilters?: string[] | undefined;
|
|
4005
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
4006
3220
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
4007
3221
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4008
3222
|
readonly inlineTitle?: string | undefined;
|
|
@@ -4027,22 +3241,8 @@ declare const SystemFile: Omit<{
|
|
|
4027
3241
|
relationshipField?: string | undefined;
|
|
4028
3242
|
} | undefined;
|
|
4029
3243
|
readonly language?: string | undefined;
|
|
4030
|
-
readonly lineNumbers?: boolean | undefined;
|
|
4031
3244
|
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
3245
|
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
3246
|
readonly currencyConfig?: {
|
|
4047
3247
|
precision: number;
|
|
4048
3248
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -4096,29 +3296,7 @@ declare const SystemFile: Omit<{
|
|
|
4096
3296
|
} | undefined;
|
|
4097
3297
|
maxVersions?: number | undefined;
|
|
4098
3298
|
} | 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;
|
|
3299
|
+
readonly trackHistory?: boolean | undefined;
|
|
4122
3300
|
readonly visibleWhen?: {
|
|
4123
3301
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4124
3302
|
source?: string | undefined;
|
|
@@ -4157,7 +3335,6 @@ declare const SystemFile: Omit<{
|
|
|
4157
3335
|
} | undefined;
|
|
4158
3336
|
readonly sortable?: boolean | undefined;
|
|
4159
3337
|
readonly inlineHelpText?: string | undefined;
|
|
4160
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
4161
3338
|
readonly caseSensitive?: boolean | undefined;
|
|
4162
3339
|
readonly autonumberFormat?: string | undefined;
|
|
4163
3340
|
readonly index?: boolean | undefined;
|
|
@@ -4188,7 +3365,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4188
3365
|
multiple: boolean;
|
|
4189
3366
|
unique: boolean;
|
|
4190
3367
|
deleteBehavior: "set_null" | "cascade" | "restrict";
|
|
4191
|
-
auditTrail: boolean;
|
|
4192
3368
|
hidden: boolean;
|
|
4193
3369
|
readonly: boolean;
|
|
4194
3370
|
sortable: boolean;
|
|
@@ -4214,7 +3390,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4214
3390
|
}[] | undefined;
|
|
4215
3391
|
reference?: string | undefined;
|
|
4216
3392
|
referenceFilters?: string[] | undefined;
|
|
4217
|
-
writeRequiresMasterRead?: boolean | undefined;
|
|
4218
3393
|
inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
4219
3394
|
inlineTitle?: string | undefined;
|
|
4220
3395
|
inlineColumns?: any[] | undefined;
|
|
@@ -4246,28 +3421,14 @@ declare const SystemUploadSession: Omit<{
|
|
|
4246
3421
|
relationshipField?: string | undefined;
|
|
4247
3422
|
} | undefined;
|
|
4248
3423
|
language?: string | undefined;
|
|
4249
|
-
theme?: string | undefined;
|
|
4250
|
-
lineNumbers?: boolean | undefined;
|
|
4251
3424
|
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
3425
|
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
3426
|
currencyConfig?: {
|
|
4267
3427
|
precision: number;
|
|
4268
3428
|
currencyMode: "fixed" | "dynamic";
|
|
4269
3429
|
defaultCurrency: string;
|
|
4270
3430
|
} | undefined;
|
|
3431
|
+
dimensions?: number | undefined;
|
|
4271
3432
|
vectorConfig?: {
|
|
4272
3433
|
dimensions: number;
|
|
4273
3434
|
distanceMetric: "cosine" | "euclidean" | "dotProduct" | "manhattan";
|
|
@@ -4316,46 +3477,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
4316
3477
|
} | undefined;
|
|
4317
3478
|
maxVersions?: number | undefined;
|
|
4318
3479
|
} | 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;
|
|
3480
|
+
trackHistory?: boolean | undefined;
|
|
4345
3481
|
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
3482
|
group?: string | undefined;
|
|
4360
3483
|
visibleWhen?: {
|
|
4361
3484
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -4427,7 +3550,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4427
3550
|
} | undefined;
|
|
4428
3551
|
system?: boolean | undefined;
|
|
4429
3552
|
inlineHelpText?: string | undefined;
|
|
4430
|
-
trackFeedHistory?: boolean | undefined;
|
|
4431
3553
|
caseSensitive?: boolean | undefined;
|
|
4432
3554
|
autonumberFormat?: string | undefined;
|
|
4433
3555
|
}>;
|
|
@@ -4518,12 +3640,13 @@ declare const SystemUploadSession: Omit<{
|
|
|
4518
3640
|
key: string;
|
|
4519
3641
|
interval?: string | undefined;
|
|
4520
3642
|
} | undefined;
|
|
4521
|
-
cdc?: {
|
|
4522
|
-
enabled: boolean;
|
|
4523
|
-
events: ("delete" | "update" | "insert")[];
|
|
4524
|
-
destination: string;
|
|
4525
|
-
} | undefined;
|
|
4526
3643
|
validations?: _objectstack_spec_data.BaseValidationRuleShape[] | undefined;
|
|
3644
|
+
activityMilestones?: {
|
|
3645
|
+
field: string;
|
|
3646
|
+
value: string;
|
|
3647
|
+
summary: string;
|
|
3648
|
+
type?: string | undefined;
|
|
3649
|
+
}[] | undefined;
|
|
4527
3650
|
displayNameField?: string | undefined;
|
|
4528
3651
|
recordName?: {
|
|
4529
3652
|
type: "text" | "autonumber";
|
|
@@ -4834,7 +3957,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4834
3957
|
clone: boolean;
|
|
4835
3958
|
apiMethods?: ("get" | "delete" | "list" | "search" | "upsert" | "create" | "import" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
4836
3959
|
} | undefined;
|
|
4837
|
-
recordTypes?: string[] | undefined;
|
|
4838
3960
|
sharingModel?: "private" | "full" | "read" | "read_write" | undefined;
|
|
4839
3961
|
publicSharing?: {
|
|
4840
3962
|
enabled: boolean;
|
|
@@ -4891,6 +4013,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
4891
4013
|
variant?: "link" | "primary" | "secondary" | "danger" | "ghost" | undefined;
|
|
4892
4014
|
confirmText?: string | undefined;
|
|
4893
4015
|
successMessage?: string | undefined;
|
|
4016
|
+
errorMessage?: string | undefined;
|
|
4017
|
+
undoable?: boolean | undefined;
|
|
4894
4018
|
resultDialog?: {
|
|
4895
4019
|
title?: string | undefined;
|
|
4896
4020
|
description?: string | undefined;
|
|
@@ -4981,7 +4105,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
4981
4105
|
readonly required?: boolean | undefined;
|
|
4982
4106
|
readonly multiple?: boolean | undefined;
|
|
4983
4107
|
readonly dependencies?: string[] | undefined;
|
|
4984
|
-
readonly theme?: string | undefined;
|
|
4985
4108
|
readonly externalId?: boolean | undefined;
|
|
4986
4109
|
readonly defaultValue?: unknown;
|
|
4987
4110
|
readonly group?: string | undefined;
|
|
@@ -4989,23 +4112,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4989
4112
|
readonly system?: boolean | undefined;
|
|
4990
4113
|
readonly min?: number | undefined;
|
|
4991
4114
|
readonly max?: number | undefined;
|
|
4992
|
-
readonly
|
|
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;
|
|
4115
|
+
readonly dimensions?: number | undefined;
|
|
5009
4116
|
readonly columnName?: string | undefined;
|
|
5010
4117
|
readonly searchable?: boolean | undefined;
|
|
5011
4118
|
readonly unique?: boolean | undefined;
|
|
@@ -5014,7 +4121,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5014
4121
|
readonly scale?: number | undefined;
|
|
5015
4122
|
readonly reference?: string | undefined;
|
|
5016
4123
|
readonly referenceFilters?: string[] | undefined;
|
|
5017
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5018
4124
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5019
4125
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5020
4126
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5039,22 +4145,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
5039
4145
|
relationshipField?: string | undefined;
|
|
5040
4146
|
} | undefined;
|
|
5041
4147
|
readonly language?: string | undefined;
|
|
5042
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5043
4148
|
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
4149
|
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
4150
|
readonly currencyConfig?: {
|
|
5059
4151
|
precision: number;
|
|
5060
4152
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5108,29 +4200,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5108
4200
|
} | undefined;
|
|
5109
4201
|
maxVersions?: number | undefined;
|
|
5110
4202
|
} | 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;
|
|
4203
|
+
readonly trackHistory?: boolean | undefined;
|
|
5134
4204
|
readonly visibleWhen?: {
|
|
5135
4205
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5136
4206
|
source?: string | undefined;
|
|
@@ -5169,7 +4239,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5169
4239
|
} | undefined;
|
|
5170
4240
|
readonly sortable?: boolean | undefined;
|
|
5171
4241
|
readonly inlineHelpText?: string | undefined;
|
|
5172
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5173
4242
|
readonly caseSensitive?: boolean | undefined;
|
|
5174
4243
|
readonly autonumberFormat?: string | undefined;
|
|
5175
4244
|
readonly index?: boolean | undefined;
|
|
@@ -5191,7 +4260,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5191
4260
|
readonly required?: boolean | undefined;
|
|
5192
4261
|
readonly multiple?: boolean | undefined;
|
|
5193
4262
|
readonly dependencies?: string[] | undefined;
|
|
5194
|
-
readonly theme?: string | undefined;
|
|
5195
4263
|
readonly externalId?: boolean | undefined;
|
|
5196
4264
|
readonly defaultValue?: unknown;
|
|
5197
4265
|
readonly group?: string | undefined;
|
|
@@ -5199,23 +4267,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5199
4267
|
readonly system?: boolean | undefined;
|
|
5200
4268
|
readonly min?: number | undefined;
|
|
5201
4269
|
readonly max?: number | undefined;
|
|
5202
|
-
readonly
|
|
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;
|
|
4270
|
+
readonly dimensions?: number | undefined;
|
|
5219
4271
|
readonly columnName?: string | undefined;
|
|
5220
4272
|
readonly searchable?: boolean | undefined;
|
|
5221
4273
|
readonly unique?: boolean | undefined;
|
|
@@ -5224,7 +4276,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5224
4276
|
readonly scale?: number | undefined;
|
|
5225
4277
|
readonly reference?: string | undefined;
|
|
5226
4278
|
readonly referenceFilters?: string[] | undefined;
|
|
5227
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5228
4279
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5229
4280
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5230
4281
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5249,22 +4300,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
5249
4300
|
relationshipField?: string | undefined;
|
|
5250
4301
|
} | undefined;
|
|
5251
4302
|
readonly language?: string | undefined;
|
|
5252
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5253
4303
|
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
4304
|
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
4305
|
readonly currencyConfig?: {
|
|
5269
4306
|
precision: number;
|
|
5270
4307
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5318,29 +4355,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5318
4355
|
} | undefined;
|
|
5319
4356
|
maxVersions?: number | undefined;
|
|
5320
4357
|
} | 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;
|
|
4358
|
+
readonly trackHistory?: boolean | undefined;
|
|
5344
4359
|
readonly visibleWhen?: {
|
|
5345
4360
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5346
4361
|
source?: string | undefined;
|
|
@@ -5379,7 +4394,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5379
4394
|
} | undefined;
|
|
5380
4395
|
readonly sortable?: boolean | undefined;
|
|
5381
4396
|
readonly inlineHelpText?: string | undefined;
|
|
5382
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5383
4397
|
readonly caseSensitive?: boolean | undefined;
|
|
5384
4398
|
readonly autonumberFormat?: string | undefined;
|
|
5385
4399
|
readonly index?: boolean | undefined;
|
|
@@ -5401,7 +4415,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5401
4415
|
readonly required?: boolean | undefined;
|
|
5402
4416
|
readonly multiple?: boolean | undefined;
|
|
5403
4417
|
readonly dependencies?: string[] | undefined;
|
|
5404
|
-
readonly theme?: string | undefined;
|
|
5405
4418
|
readonly externalId?: boolean | undefined;
|
|
5406
4419
|
readonly defaultValue?: unknown;
|
|
5407
4420
|
readonly group?: string | undefined;
|
|
@@ -5409,23 +4422,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5409
4422
|
readonly system?: boolean | undefined;
|
|
5410
4423
|
readonly min?: number | undefined;
|
|
5411
4424
|
readonly max?: number | undefined;
|
|
5412
|
-
readonly
|
|
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;
|
|
4425
|
+
readonly dimensions?: number | undefined;
|
|
5429
4426
|
readonly columnName?: string | undefined;
|
|
5430
4427
|
readonly searchable?: boolean | undefined;
|
|
5431
4428
|
readonly unique?: boolean | undefined;
|
|
@@ -5434,7 +4431,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5434
4431
|
readonly scale?: number | undefined;
|
|
5435
4432
|
readonly reference?: string | undefined;
|
|
5436
4433
|
readonly referenceFilters?: string[] | undefined;
|
|
5437
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5438
4434
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5439
4435
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5440
4436
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5459,22 +4455,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
5459
4455
|
relationshipField?: string | undefined;
|
|
5460
4456
|
} | undefined;
|
|
5461
4457
|
readonly language?: string | undefined;
|
|
5462
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5463
4458
|
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
4459
|
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
4460
|
readonly currencyConfig?: {
|
|
5479
4461
|
precision: number;
|
|
5480
4462
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5528,29 +4510,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5528
4510
|
} | undefined;
|
|
5529
4511
|
maxVersions?: number | undefined;
|
|
5530
4512
|
} | 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;
|
|
4513
|
+
readonly trackHistory?: boolean | undefined;
|
|
5554
4514
|
readonly visibleWhen?: {
|
|
5555
4515
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5556
4516
|
source?: string | undefined;
|
|
@@ -5589,7 +4549,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5589
4549
|
} | undefined;
|
|
5590
4550
|
readonly sortable?: boolean | undefined;
|
|
5591
4551
|
readonly inlineHelpText?: string | undefined;
|
|
5592
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5593
4552
|
readonly caseSensitive?: boolean | undefined;
|
|
5594
4553
|
readonly autonumberFormat?: string | undefined;
|
|
5595
4554
|
readonly index?: boolean | undefined;
|
|
@@ -5611,7 +4570,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5611
4570
|
readonly required?: boolean | undefined;
|
|
5612
4571
|
readonly multiple?: boolean | undefined;
|
|
5613
4572
|
readonly dependencies?: string[] | undefined;
|
|
5614
|
-
readonly theme?: string | undefined;
|
|
5615
4573
|
readonly externalId?: boolean | undefined;
|
|
5616
4574
|
readonly defaultValue?: unknown;
|
|
5617
4575
|
readonly group?: string | undefined;
|
|
@@ -5619,23 +4577,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5619
4577
|
readonly system?: boolean | undefined;
|
|
5620
4578
|
readonly min?: number | undefined;
|
|
5621
4579
|
readonly max?: number | undefined;
|
|
5622
|
-
readonly
|
|
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;
|
|
4580
|
+
readonly dimensions?: number | undefined;
|
|
5639
4581
|
readonly columnName?: string | undefined;
|
|
5640
4582
|
readonly searchable?: boolean | undefined;
|
|
5641
4583
|
readonly unique?: boolean | undefined;
|
|
@@ -5644,7 +4586,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5644
4586
|
readonly scale?: number | undefined;
|
|
5645
4587
|
readonly reference?: string | undefined;
|
|
5646
4588
|
readonly referenceFilters?: string[] | undefined;
|
|
5647
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5648
4589
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5649
4590
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5650
4591
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5669,22 +4610,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
5669
4610
|
relationshipField?: string | undefined;
|
|
5670
4611
|
} | undefined;
|
|
5671
4612
|
readonly language?: string | undefined;
|
|
5672
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5673
4613
|
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
4614
|
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
4615
|
readonly currencyConfig?: {
|
|
5689
4616
|
precision: number;
|
|
5690
4617
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5738,29 +4665,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5738
4665
|
} | undefined;
|
|
5739
4666
|
maxVersions?: number | undefined;
|
|
5740
4667
|
} | 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;
|
|
4668
|
+
readonly trackHistory?: boolean | undefined;
|
|
5764
4669
|
readonly visibleWhen?: {
|
|
5765
4670
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5766
4671
|
source?: string | undefined;
|
|
@@ -5799,7 +4704,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5799
4704
|
} | undefined;
|
|
5800
4705
|
readonly sortable?: boolean | undefined;
|
|
5801
4706
|
readonly inlineHelpText?: string | undefined;
|
|
5802
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
5803
4707
|
readonly caseSensitive?: boolean | undefined;
|
|
5804
4708
|
readonly autonumberFormat?: string | undefined;
|
|
5805
4709
|
readonly index?: boolean | undefined;
|
|
@@ -5821,7 +4725,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5821
4725
|
readonly required?: boolean | undefined;
|
|
5822
4726
|
readonly multiple?: boolean | undefined;
|
|
5823
4727
|
readonly dependencies?: string[] | undefined;
|
|
5824
|
-
readonly theme?: string | undefined;
|
|
5825
4728
|
readonly externalId?: boolean | undefined;
|
|
5826
4729
|
readonly defaultValue?: unknown;
|
|
5827
4730
|
readonly group?: string | undefined;
|
|
@@ -5829,23 +4732,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5829
4732
|
readonly system?: boolean | undefined;
|
|
5830
4733
|
readonly min?: number | undefined;
|
|
5831
4734
|
readonly max?: number | undefined;
|
|
5832
|
-
readonly
|
|
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;
|
|
4735
|
+
readonly dimensions?: number | undefined;
|
|
5849
4736
|
readonly columnName?: string | undefined;
|
|
5850
4737
|
readonly searchable?: boolean | undefined;
|
|
5851
4738
|
readonly unique?: boolean | undefined;
|
|
@@ -5854,7 +4741,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
5854
4741
|
readonly scale?: number | undefined;
|
|
5855
4742
|
readonly reference?: string | undefined;
|
|
5856
4743
|
readonly referenceFilters?: string[] | undefined;
|
|
5857
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
5858
4744
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
5859
4745
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
5860
4746
|
readonly inlineTitle?: string | undefined;
|
|
@@ -5879,22 +4765,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
5879
4765
|
relationshipField?: string | undefined;
|
|
5880
4766
|
} | undefined;
|
|
5881
4767
|
readonly language?: string | undefined;
|
|
5882
|
-
readonly lineNumbers?: boolean | undefined;
|
|
5883
4768
|
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
4769
|
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
4770
|
readonly currencyConfig?: {
|
|
5899
4771
|
precision: number;
|
|
5900
4772
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -5948,29 +4820,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
5948
4820
|
} | undefined;
|
|
5949
4821
|
maxVersions?: number | undefined;
|
|
5950
4822
|
} | 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;
|
|
4823
|
+
readonly trackHistory?: boolean | undefined;
|
|
5974
4824
|
readonly visibleWhen?: {
|
|
5975
4825
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5976
4826
|
source?: string | undefined;
|
|
@@ -6009,7 +4859,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6009
4859
|
} | undefined;
|
|
6010
4860
|
readonly sortable?: boolean | undefined;
|
|
6011
4861
|
readonly inlineHelpText?: string | undefined;
|
|
6012
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6013
4862
|
readonly caseSensitive?: boolean | undefined;
|
|
6014
4863
|
readonly autonumberFormat?: string | undefined;
|
|
6015
4864
|
readonly index?: boolean | undefined;
|
|
@@ -6031,7 +4880,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6031
4880
|
readonly required?: boolean | undefined;
|
|
6032
4881
|
readonly multiple?: boolean | undefined;
|
|
6033
4882
|
readonly dependencies?: string[] | undefined;
|
|
6034
|
-
readonly theme?: string | undefined;
|
|
6035
4883
|
readonly externalId?: boolean | undefined;
|
|
6036
4884
|
readonly defaultValue?: unknown;
|
|
6037
4885
|
readonly group?: string | undefined;
|
|
@@ -6039,23 +4887,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6039
4887
|
readonly system?: boolean | undefined;
|
|
6040
4888
|
readonly min?: number | undefined;
|
|
6041
4889
|
readonly max?: number | undefined;
|
|
6042
|
-
readonly
|
|
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;
|
|
4890
|
+
readonly dimensions?: number | undefined;
|
|
6059
4891
|
readonly columnName?: string | undefined;
|
|
6060
4892
|
readonly searchable?: boolean | undefined;
|
|
6061
4893
|
readonly unique?: boolean | undefined;
|
|
@@ -6064,7 +4896,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6064
4896
|
readonly scale?: number | undefined;
|
|
6065
4897
|
readonly reference?: string | undefined;
|
|
6066
4898
|
readonly referenceFilters?: string[] | undefined;
|
|
6067
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6068
4899
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6069
4900
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6070
4901
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6089,22 +4920,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
6089
4920
|
relationshipField?: string | undefined;
|
|
6090
4921
|
} | undefined;
|
|
6091
4922
|
readonly language?: string | undefined;
|
|
6092
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6093
4923
|
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
4924
|
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
4925
|
readonly currencyConfig?: {
|
|
6109
4926
|
precision: number;
|
|
6110
4927
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6158,29 +4975,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6158
4975
|
} | undefined;
|
|
6159
4976
|
maxVersions?: number | undefined;
|
|
6160
4977
|
} | 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;
|
|
4978
|
+
readonly trackHistory?: boolean | undefined;
|
|
6184
4979
|
readonly visibleWhen?: {
|
|
6185
4980
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6186
4981
|
source?: string | undefined;
|
|
@@ -6219,7 +5014,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6219
5014
|
} | undefined;
|
|
6220
5015
|
readonly sortable?: boolean | undefined;
|
|
6221
5016
|
readonly inlineHelpText?: string | undefined;
|
|
6222
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6223
5017
|
readonly caseSensitive?: boolean | undefined;
|
|
6224
5018
|
readonly autonumberFormat?: string | undefined;
|
|
6225
5019
|
readonly index?: boolean | undefined;
|
|
@@ -6241,7 +5035,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6241
5035
|
readonly required?: boolean | undefined;
|
|
6242
5036
|
readonly multiple?: boolean | undefined;
|
|
6243
5037
|
readonly dependencies?: string[] | undefined;
|
|
6244
|
-
readonly theme?: string | undefined;
|
|
6245
5038
|
readonly externalId?: boolean | undefined;
|
|
6246
5039
|
readonly defaultValue?: unknown;
|
|
6247
5040
|
readonly group?: string | undefined;
|
|
@@ -6249,23 +5042,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6249
5042
|
readonly system?: boolean | undefined;
|
|
6250
5043
|
readonly min?: number | undefined;
|
|
6251
5044
|
readonly max?: number | undefined;
|
|
6252
|
-
readonly
|
|
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;
|
|
5045
|
+
readonly dimensions?: number | undefined;
|
|
6269
5046
|
readonly columnName?: string | undefined;
|
|
6270
5047
|
readonly searchable?: boolean | undefined;
|
|
6271
5048
|
readonly unique?: boolean | undefined;
|
|
@@ -6274,7 +5051,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6274
5051
|
readonly scale?: number | undefined;
|
|
6275
5052
|
readonly reference?: string | undefined;
|
|
6276
5053
|
readonly referenceFilters?: string[] | undefined;
|
|
6277
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6278
5054
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6279
5055
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6280
5056
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6299,22 +5075,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
6299
5075
|
relationshipField?: string | undefined;
|
|
6300
5076
|
} | undefined;
|
|
6301
5077
|
readonly language?: string | undefined;
|
|
6302
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6303
5078
|
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
5079
|
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
5080
|
readonly currencyConfig?: {
|
|
6319
5081
|
precision: number;
|
|
6320
5082
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6368,29 +5130,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6368
5130
|
} | undefined;
|
|
6369
5131
|
maxVersions?: number | undefined;
|
|
6370
5132
|
} | 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;
|
|
5133
|
+
readonly trackHistory?: boolean | undefined;
|
|
6394
5134
|
readonly visibleWhen?: {
|
|
6395
5135
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6396
5136
|
source?: string | undefined;
|
|
@@ -6429,7 +5169,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6429
5169
|
} | undefined;
|
|
6430
5170
|
readonly sortable?: boolean | undefined;
|
|
6431
5171
|
readonly inlineHelpText?: string | undefined;
|
|
6432
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6433
5172
|
readonly caseSensitive?: boolean | undefined;
|
|
6434
5173
|
readonly autonumberFormat?: string | undefined;
|
|
6435
5174
|
readonly index?: boolean | undefined;
|
|
@@ -6451,7 +5190,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6451
5190
|
readonly required?: boolean | undefined;
|
|
6452
5191
|
readonly multiple?: boolean | undefined;
|
|
6453
5192
|
readonly dependencies?: string[] | undefined;
|
|
6454
|
-
readonly theme?: string | undefined;
|
|
6455
5193
|
readonly externalId?: boolean | undefined;
|
|
6456
5194
|
readonly defaultValue?: unknown;
|
|
6457
5195
|
readonly group?: string | undefined;
|
|
@@ -6459,23 +5197,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6459
5197
|
readonly system?: boolean | undefined;
|
|
6460
5198
|
readonly min?: number | undefined;
|
|
6461
5199
|
readonly max?: number | undefined;
|
|
6462
|
-
readonly
|
|
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;
|
|
5200
|
+
readonly dimensions?: number | undefined;
|
|
6479
5201
|
readonly columnName?: string | undefined;
|
|
6480
5202
|
readonly searchable?: boolean | undefined;
|
|
6481
5203
|
readonly unique?: boolean | undefined;
|
|
@@ -6484,7 +5206,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6484
5206
|
readonly scale?: number | undefined;
|
|
6485
5207
|
readonly reference?: string | undefined;
|
|
6486
5208
|
readonly referenceFilters?: string[] | undefined;
|
|
6487
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6488
5209
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6489
5210
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6490
5211
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6509,22 +5230,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
6509
5230
|
relationshipField?: string | undefined;
|
|
6510
5231
|
} | undefined;
|
|
6511
5232
|
readonly language?: string | undefined;
|
|
6512
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6513
5233
|
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
5234
|
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
5235
|
readonly currencyConfig?: {
|
|
6529
5236
|
precision: number;
|
|
6530
5237
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6578,29 +5285,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6578
5285
|
} | undefined;
|
|
6579
5286
|
maxVersions?: number | undefined;
|
|
6580
5287
|
} | 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;
|
|
5288
|
+
readonly trackHistory?: boolean | undefined;
|
|
6604
5289
|
readonly visibleWhen?: {
|
|
6605
5290
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6606
5291
|
source?: string | undefined;
|
|
@@ -6639,7 +5324,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6639
5324
|
} | undefined;
|
|
6640
5325
|
readonly sortable?: boolean | undefined;
|
|
6641
5326
|
readonly inlineHelpText?: string | undefined;
|
|
6642
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6643
5327
|
readonly caseSensitive?: boolean | undefined;
|
|
6644
5328
|
readonly autonumberFormat?: string | undefined;
|
|
6645
5329
|
readonly index?: boolean | undefined;
|
|
@@ -6661,7 +5345,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6661
5345
|
readonly required?: boolean | undefined;
|
|
6662
5346
|
readonly multiple?: boolean | undefined;
|
|
6663
5347
|
readonly dependencies?: string[] | undefined;
|
|
6664
|
-
readonly theme?: string | undefined;
|
|
6665
5348
|
readonly externalId?: boolean | undefined;
|
|
6666
5349
|
readonly defaultValue?: unknown;
|
|
6667
5350
|
readonly group?: string | undefined;
|
|
@@ -6669,23 +5352,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6669
5352
|
readonly system?: boolean | undefined;
|
|
6670
5353
|
readonly min?: number | undefined;
|
|
6671
5354
|
readonly max?: number | undefined;
|
|
6672
|
-
readonly
|
|
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;
|
|
5355
|
+
readonly dimensions?: number | undefined;
|
|
6689
5356
|
readonly columnName?: string | undefined;
|
|
6690
5357
|
readonly searchable?: boolean | undefined;
|
|
6691
5358
|
readonly unique?: boolean | undefined;
|
|
@@ -6694,7 +5361,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6694
5361
|
readonly scale?: number | undefined;
|
|
6695
5362
|
readonly reference?: string | undefined;
|
|
6696
5363
|
readonly referenceFilters?: string[] | undefined;
|
|
6697
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6698
5364
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6699
5365
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6700
5366
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6719,22 +5385,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
6719
5385
|
relationshipField?: string | undefined;
|
|
6720
5386
|
} | undefined;
|
|
6721
5387
|
readonly language?: string | undefined;
|
|
6722
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6723
5388
|
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
5389
|
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
5390
|
readonly currencyConfig?: {
|
|
6739
5391
|
precision: number;
|
|
6740
5392
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6788,29 +5440,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6788
5440
|
} | undefined;
|
|
6789
5441
|
maxVersions?: number | undefined;
|
|
6790
5442
|
} | 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;
|
|
5443
|
+
readonly trackHistory?: boolean | undefined;
|
|
6814
5444
|
readonly visibleWhen?: {
|
|
6815
5445
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6816
5446
|
source?: string | undefined;
|
|
@@ -6849,7 +5479,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6849
5479
|
} | undefined;
|
|
6850
5480
|
readonly sortable?: boolean | undefined;
|
|
6851
5481
|
readonly inlineHelpText?: string | undefined;
|
|
6852
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
6853
5482
|
readonly caseSensitive?: boolean | undefined;
|
|
6854
5483
|
readonly autonumberFormat?: string | undefined;
|
|
6855
5484
|
readonly index?: boolean | undefined;
|
|
@@ -6871,7 +5500,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6871
5500
|
readonly required?: boolean | undefined;
|
|
6872
5501
|
readonly multiple?: boolean | undefined;
|
|
6873
5502
|
readonly dependencies?: string[] | undefined;
|
|
6874
|
-
readonly theme?: string | undefined;
|
|
6875
5503
|
readonly externalId?: boolean | undefined;
|
|
6876
5504
|
readonly defaultValue?: unknown;
|
|
6877
5505
|
readonly group?: string | undefined;
|
|
@@ -6879,23 +5507,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6879
5507
|
readonly system?: boolean | undefined;
|
|
6880
5508
|
readonly min?: number | undefined;
|
|
6881
5509
|
readonly max?: number | undefined;
|
|
6882
|
-
readonly
|
|
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;
|
|
5510
|
+
readonly dimensions?: number | undefined;
|
|
6899
5511
|
readonly columnName?: string | undefined;
|
|
6900
5512
|
readonly searchable?: boolean | undefined;
|
|
6901
5513
|
readonly unique?: boolean | undefined;
|
|
@@ -6904,7 +5516,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
6904
5516
|
readonly scale?: number | undefined;
|
|
6905
5517
|
readonly reference?: string | undefined;
|
|
6906
5518
|
readonly referenceFilters?: string[] | undefined;
|
|
6907
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
6908
5519
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
6909
5520
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
6910
5521
|
readonly inlineTitle?: string | undefined;
|
|
@@ -6929,22 +5540,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
6929
5540
|
relationshipField?: string | undefined;
|
|
6930
5541
|
} | undefined;
|
|
6931
5542
|
readonly language?: string | undefined;
|
|
6932
|
-
readonly lineNumbers?: boolean | undefined;
|
|
6933
5543
|
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
5544
|
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
5545
|
readonly currencyConfig?: {
|
|
6949
5546
|
precision: number;
|
|
6950
5547
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -6998,29 +5595,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
6998
5595
|
} | undefined;
|
|
6999
5596
|
maxVersions?: number | undefined;
|
|
7000
5597
|
} | 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;
|
|
5598
|
+
readonly trackHistory?: boolean | undefined;
|
|
7024
5599
|
readonly visibleWhen?: {
|
|
7025
5600
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7026
5601
|
source?: string | undefined;
|
|
@@ -7059,7 +5634,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7059
5634
|
} | undefined;
|
|
7060
5635
|
readonly sortable?: boolean | undefined;
|
|
7061
5636
|
readonly inlineHelpText?: string | undefined;
|
|
7062
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7063
5637
|
readonly caseSensitive?: boolean | undefined;
|
|
7064
5638
|
readonly autonumberFormat?: string | undefined;
|
|
7065
5639
|
readonly index?: boolean | undefined;
|
|
@@ -7081,7 +5655,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7081
5655
|
readonly required?: boolean | undefined;
|
|
7082
5656
|
readonly multiple?: boolean | undefined;
|
|
7083
5657
|
readonly dependencies?: string[] | undefined;
|
|
7084
|
-
readonly theme?: string | undefined;
|
|
7085
5658
|
readonly externalId?: boolean | undefined;
|
|
7086
5659
|
readonly defaultValue?: unknown;
|
|
7087
5660
|
readonly group?: string | undefined;
|
|
@@ -7089,23 +5662,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7089
5662
|
readonly system?: boolean | undefined;
|
|
7090
5663
|
readonly min?: number | undefined;
|
|
7091
5664
|
readonly max?: number | undefined;
|
|
7092
|
-
readonly
|
|
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;
|
|
5665
|
+
readonly dimensions?: number | undefined;
|
|
7109
5666
|
readonly columnName?: string | undefined;
|
|
7110
5667
|
readonly searchable?: boolean | undefined;
|
|
7111
5668
|
readonly unique?: boolean | undefined;
|
|
@@ -7114,7 +5671,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7114
5671
|
readonly scale?: number | undefined;
|
|
7115
5672
|
readonly reference?: string | undefined;
|
|
7116
5673
|
readonly referenceFilters?: string[] | undefined;
|
|
7117
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7118
5674
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7119
5675
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7120
5676
|
readonly inlineTitle?: string | undefined;
|
|
@@ -7139,22 +5695,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
7139
5695
|
relationshipField?: string | undefined;
|
|
7140
5696
|
} | undefined;
|
|
7141
5697
|
readonly language?: string | undefined;
|
|
7142
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7143
5698
|
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
5699
|
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
5700
|
readonly currencyConfig?: {
|
|
7159
5701
|
precision: number;
|
|
7160
5702
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -7208,29 +5750,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7208
5750
|
} | undefined;
|
|
7209
5751
|
maxVersions?: number | undefined;
|
|
7210
5752
|
} | 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;
|
|
5753
|
+
readonly trackHistory?: boolean | undefined;
|
|
7234
5754
|
readonly visibleWhen?: {
|
|
7235
5755
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7236
5756
|
source?: string | undefined;
|
|
@@ -7269,7 +5789,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7269
5789
|
} | undefined;
|
|
7270
5790
|
readonly sortable?: boolean | undefined;
|
|
7271
5791
|
readonly inlineHelpText?: string | undefined;
|
|
7272
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7273
5792
|
readonly caseSensitive?: boolean | undefined;
|
|
7274
5793
|
readonly autonumberFormat?: string | undefined;
|
|
7275
5794
|
readonly index?: boolean | undefined;
|
|
@@ -7291,7 +5810,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7291
5810
|
readonly required?: boolean | undefined;
|
|
7292
5811
|
readonly multiple?: boolean | undefined;
|
|
7293
5812
|
readonly dependencies?: string[] | undefined;
|
|
7294
|
-
readonly theme?: string | undefined;
|
|
7295
5813
|
readonly externalId?: boolean | undefined;
|
|
7296
5814
|
readonly defaultValue?: unknown;
|
|
7297
5815
|
readonly group?: string | undefined;
|
|
@@ -7299,23 +5817,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7299
5817
|
readonly system?: boolean | undefined;
|
|
7300
5818
|
readonly min?: number | undefined;
|
|
7301
5819
|
readonly max?: number | undefined;
|
|
7302
|
-
readonly
|
|
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;
|
|
5820
|
+
readonly dimensions?: number | undefined;
|
|
7319
5821
|
readonly columnName?: string | undefined;
|
|
7320
5822
|
readonly searchable?: boolean | undefined;
|
|
7321
5823
|
readonly unique?: boolean | undefined;
|
|
@@ -7324,7 +5826,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7324
5826
|
readonly scale?: number | undefined;
|
|
7325
5827
|
readonly reference?: string | undefined;
|
|
7326
5828
|
readonly referenceFilters?: string[] | undefined;
|
|
7327
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7328
5829
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7329
5830
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7330
5831
|
readonly inlineTitle?: string | undefined;
|
|
@@ -7349,22 +5850,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
7349
5850
|
relationshipField?: string | undefined;
|
|
7350
5851
|
} | undefined;
|
|
7351
5852
|
readonly language?: string | undefined;
|
|
7352
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7353
5853
|
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
5854
|
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
5855
|
readonly currencyConfig?: {
|
|
7369
5856
|
precision: number;
|
|
7370
5857
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -7418,29 +5905,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7418
5905
|
} | undefined;
|
|
7419
5906
|
maxVersions?: number | undefined;
|
|
7420
5907
|
} | 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;
|
|
5908
|
+
readonly trackHistory?: boolean | undefined;
|
|
7444
5909
|
readonly visibleWhen?: {
|
|
7445
5910
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7446
5911
|
source?: string | undefined;
|
|
@@ -7479,7 +5944,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7479
5944
|
} | undefined;
|
|
7480
5945
|
readonly sortable?: boolean | undefined;
|
|
7481
5946
|
readonly inlineHelpText?: string | undefined;
|
|
7482
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7483
5947
|
readonly caseSensitive?: boolean | undefined;
|
|
7484
5948
|
readonly autonumberFormat?: string | undefined;
|
|
7485
5949
|
readonly index?: boolean | undefined;
|
|
@@ -7501,7 +5965,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7501
5965
|
readonly required?: boolean | undefined;
|
|
7502
5966
|
readonly multiple?: boolean | undefined;
|
|
7503
5967
|
readonly dependencies?: string[] | undefined;
|
|
7504
|
-
readonly theme?: string | undefined;
|
|
7505
5968
|
readonly externalId?: boolean | undefined;
|
|
7506
5969
|
readonly defaultValue?: unknown;
|
|
7507
5970
|
readonly group?: string | undefined;
|
|
@@ -7509,23 +5972,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7509
5972
|
readonly system?: boolean | undefined;
|
|
7510
5973
|
readonly min?: number | undefined;
|
|
7511
5974
|
readonly max?: number | undefined;
|
|
7512
|
-
readonly
|
|
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;
|
|
5975
|
+
readonly dimensions?: number | undefined;
|
|
7529
5976
|
readonly columnName?: string | undefined;
|
|
7530
5977
|
readonly searchable?: boolean | undefined;
|
|
7531
5978
|
readonly unique?: boolean | undefined;
|
|
@@ -7534,7 +5981,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7534
5981
|
readonly scale?: number | undefined;
|
|
7535
5982
|
readonly reference?: string | undefined;
|
|
7536
5983
|
readonly referenceFilters?: string[] | undefined;
|
|
7537
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7538
5984
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7539
5985
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7540
5986
|
readonly inlineTitle?: string | undefined;
|
|
@@ -7559,22 +6005,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
7559
6005
|
relationshipField?: string | undefined;
|
|
7560
6006
|
} | undefined;
|
|
7561
6007
|
readonly language?: string | undefined;
|
|
7562
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7563
6008
|
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
6009
|
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
6010
|
readonly currencyConfig?: {
|
|
7579
6011
|
precision: number;
|
|
7580
6012
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -7628,29 +6060,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7628
6060
|
} | undefined;
|
|
7629
6061
|
maxVersions?: number | undefined;
|
|
7630
6062
|
} | 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;
|
|
6063
|
+
readonly trackHistory?: boolean | undefined;
|
|
7654
6064
|
readonly visibleWhen?: {
|
|
7655
6065
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7656
6066
|
source?: string | undefined;
|
|
@@ -7689,7 +6099,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7689
6099
|
} | undefined;
|
|
7690
6100
|
readonly sortable?: boolean | undefined;
|
|
7691
6101
|
readonly inlineHelpText?: string | undefined;
|
|
7692
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7693
6102
|
readonly caseSensitive?: boolean | undefined;
|
|
7694
6103
|
readonly autonumberFormat?: string | undefined;
|
|
7695
6104
|
readonly index?: boolean | undefined;
|
|
@@ -7711,7 +6120,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7711
6120
|
readonly required?: boolean | undefined;
|
|
7712
6121
|
readonly multiple?: boolean | undefined;
|
|
7713
6122
|
readonly dependencies?: string[] | undefined;
|
|
7714
|
-
readonly theme?: string | undefined;
|
|
7715
6123
|
readonly externalId?: boolean | undefined;
|
|
7716
6124
|
readonly defaultValue?: unknown;
|
|
7717
6125
|
readonly group?: string | undefined;
|
|
@@ -7719,23 +6127,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7719
6127
|
readonly system?: boolean | undefined;
|
|
7720
6128
|
readonly min?: number | undefined;
|
|
7721
6129
|
readonly max?: number | undefined;
|
|
7722
|
-
readonly
|
|
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;
|
|
6130
|
+
readonly dimensions?: number | undefined;
|
|
7739
6131
|
readonly columnName?: string | undefined;
|
|
7740
6132
|
readonly searchable?: boolean | undefined;
|
|
7741
6133
|
readonly unique?: boolean | undefined;
|
|
@@ -7744,7 +6136,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7744
6136
|
readonly scale?: number | undefined;
|
|
7745
6137
|
readonly reference?: string | undefined;
|
|
7746
6138
|
readonly referenceFilters?: string[] | undefined;
|
|
7747
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7748
6139
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7749
6140
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7750
6141
|
readonly inlineTitle?: string | undefined;
|
|
@@ -7769,22 +6160,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
7769
6160
|
relationshipField?: string | undefined;
|
|
7770
6161
|
} | undefined;
|
|
7771
6162
|
readonly language?: string | undefined;
|
|
7772
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7773
6163
|
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
6164
|
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
6165
|
readonly currencyConfig?: {
|
|
7789
6166
|
precision: number;
|
|
7790
6167
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -7838,29 +6215,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7838
6215
|
} | undefined;
|
|
7839
6216
|
maxVersions?: number | undefined;
|
|
7840
6217
|
} | 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;
|
|
6218
|
+
readonly trackHistory?: boolean | undefined;
|
|
7864
6219
|
readonly visibleWhen?: {
|
|
7865
6220
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7866
6221
|
source?: string | undefined;
|
|
@@ -7899,7 +6254,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7899
6254
|
} | undefined;
|
|
7900
6255
|
readonly sortable?: boolean | undefined;
|
|
7901
6256
|
readonly inlineHelpText?: string | undefined;
|
|
7902
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
7903
6257
|
readonly caseSensitive?: boolean | undefined;
|
|
7904
6258
|
readonly autonumberFormat?: string | undefined;
|
|
7905
6259
|
readonly index?: boolean | undefined;
|
|
@@ -7921,7 +6275,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7921
6275
|
readonly required?: boolean | undefined;
|
|
7922
6276
|
readonly multiple?: boolean | undefined;
|
|
7923
6277
|
readonly dependencies?: string[] | undefined;
|
|
7924
|
-
readonly theme?: string | undefined;
|
|
7925
6278
|
readonly externalId?: boolean | undefined;
|
|
7926
6279
|
readonly defaultValue?: unknown;
|
|
7927
6280
|
readonly group?: string | undefined;
|
|
@@ -7929,23 +6282,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
7929
6282
|
readonly system?: boolean | undefined;
|
|
7930
6283
|
readonly min?: number | undefined;
|
|
7931
6284
|
readonly max?: number | undefined;
|
|
7932
|
-
readonly
|
|
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;
|
|
6285
|
+
readonly dimensions?: number | undefined;
|
|
7949
6286
|
readonly columnName?: string | undefined;
|
|
7950
6287
|
readonly searchable?: boolean | undefined;
|
|
7951
6288
|
readonly unique?: boolean | undefined;
|
|
@@ -7954,7 +6291,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
7954
6291
|
readonly scale?: number | undefined;
|
|
7955
6292
|
readonly reference?: string | undefined;
|
|
7956
6293
|
readonly referenceFilters?: string[] | undefined;
|
|
7957
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
7958
6294
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
7959
6295
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
7960
6296
|
readonly inlineTitle?: string | undefined;
|
|
@@ -7979,22 +6315,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
7979
6315
|
relationshipField?: string | undefined;
|
|
7980
6316
|
} | undefined;
|
|
7981
6317
|
readonly language?: string | undefined;
|
|
7982
|
-
readonly lineNumbers?: boolean | undefined;
|
|
7983
6318
|
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
6319
|
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
6320
|
readonly currencyConfig?: {
|
|
7999
6321
|
precision: number;
|
|
8000
6322
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8048,29 +6370,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
8048
6370
|
} | undefined;
|
|
8049
6371
|
maxVersions?: number | undefined;
|
|
8050
6372
|
} | 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;
|
|
6373
|
+
readonly trackHistory?: boolean | undefined;
|
|
8074
6374
|
readonly visibleWhen?: {
|
|
8075
6375
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8076
6376
|
source?: string | undefined;
|
|
@@ -8109,7 +6409,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8109
6409
|
} | undefined;
|
|
8110
6410
|
readonly sortable?: boolean | undefined;
|
|
8111
6411
|
readonly inlineHelpText?: string | undefined;
|
|
8112
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8113
6412
|
readonly caseSensitive?: boolean | undefined;
|
|
8114
6413
|
readonly autonumberFormat?: string | undefined;
|
|
8115
6414
|
readonly index?: boolean | undefined;
|
|
@@ -8131,7 +6430,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8131
6430
|
readonly required?: boolean | undefined;
|
|
8132
6431
|
readonly multiple?: boolean | undefined;
|
|
8133
6432
|
readonly dependencies?: string[] | undefined;
|
|
8134
|
-
readonly theme?: string | undefined;
|
|
8135
6433
|
readonly externalId?: boolean | undefined;
|
|
8136
6434
|
readonly defaultValue?: unknown;
|
|
8137
6435
|
readonly group?: string | undefined;
|
|
@@ -8139,23 +6437,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
8139
6437
|
readonly system?: boolean | undefined;
|
|
8140
6438
|
readonly min?: number | undefined;
|
|
8141
6439
|
readonly max?: number | undefined;
|
|
8142
|
-
readonly
|
|
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;
|
|
6440
|
+
readonly dimensions?: number | undefined;
|
|
8159
6441
|
readonly columnName?: string | undefined;
|
|
8160
6442
|
readonly searchable?: boolean | undefined;
|
|
8161
6443
|
readonly unique?: boolean | undefined;
|
|
@@ -8164,7 +6446,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8164
6446
|
readonly scale?: number | undefined;
|
|
8165
6447
|
readonly reference?: string | undefined;
|
|
8166
6448
|
readonly referenceFilters?: string[] | undefined;
|
|
8167
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8168
6449
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8169
6450
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8170
6451
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8189,22 +6470,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
8189
6470
|
relationshipField?: string | undefined;
|
|
8190
6471
|
} | undefined;
|
|
8191
6472
|
readonly language?: string | undefined;
|
|
8192
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8193
6473
|
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
6474
|
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
6475
|
readonly currencyConfig?: {
|
|
8209
6476
|
precision: number;
|
|
8210
6477
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8258,29 +6525,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
8258
6525
|
} | undefined;
|
|
8259
6526
|
maxVersions?: number | undefined;
|
|
8260
6527
|
} | 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;
|
|
6528
|
+
readonly trackHistory?: boolean | undefined;
|
|
8284
6529
|
readonly visibleWhen?: {
|
|
8285
6530
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8286
6531
|
source?: string | undefined;
|
|
@@ -8319,7 +6564,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8319
6564
|
} | undefined;
|
|
8320
6565
|
readonly sortable?: boolean | undefined;
|
|
8321
6566
|
readonly inlineHelpText?: string | undefined;
|
|
8322
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8323
6567
|
readonly caseSensitive?: boolean | undefined;
|
|
8324
6568
|
readonly autonumberFormat?: string | undefined;
|
|
8325
6569
|
readonly index?: boolean | undefined;
|
|
@@ -8341,7 +6585,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8341
6585
|
readonly required?: boolean | undefined;
|
|
8342
6586
|
readonly multiple?: boolean | undefined;
|
|
8343
6587
|
readonly dependencies?: string[] | undefined;
|
|
8344
|
-
readonly theme?: string | undefined;
|
|
8345
6588
|
readonly externalId?: boolean | undefined;
|
|
8346
6589
|
readonly defaultValue?: unknown;
|
|
8347
6590
|
readonly group?: string | undefined;
|
|
@@ -8349,23 +6592,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
8349
6592
|
readonly system?: boolean | undefined;
|
|
8350
6593
|
readonly min?: number | undefined;
|
|
8351
6594
|
readonly max?: number | undefined;
|
|
8352
|
-
readonly
|
|
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;
|
|
6595
|
+
readonly dimensions?: number | undefined;
|
|
8369
6596
|
readonly columnName?: string | undefined;
|
|
8370
6597
|
readonly searchable?: boolean | undefined;
|
|
8371
6598
|
readonly unique?: boolean | undefined;
|
|
@@ -8374,7 +6601,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8374
6601
|
readonly scale?: number | undefined;
|
|
8375
6602
|
readonly reference?: string | undefined;
|
|
8376
6603
|
readonly referenceFilters?: string[] | undefined;
|
|
8377
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8378
6604
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8379
6605
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8380
6606
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8399,22 +6625,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
8399
6625
|
relationshipField?: string | undefined;
|
|
8400
6626
|
} | undefined;
|
|
8401
6627
|
readonly language?: string | undefined;
|
|
8402
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8403
6628
|
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
6629
|
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
6630
|
readonly currencyConfig?: {
|
|
8419
6631
|
precision: number;
|
|
8420
6632
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8468,29 +6680,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
8468
6680
|
} | undefined;
|
|
8469
6681
|
maxVersions?: number | undefined;
|
|
8470
6682
|
} | 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;
|
|
6683
|
+
readonly trackHistory?: boolean | undefined;
|
|
8494
6684
|
readonly visibleWhen?: {
|
|
8495
6685
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8496
6686
|
source?: string | undefined;
|
|
@@ -8529,7 +6719,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8529
6719
|
} | undefined;
|
|
8530
6720
|
readonly sortable?: boolean | undefined;
|
|
8531
6721
|
readonly inlineHelpText?: string | undefined;
|
|
8532
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8533
6722
|
readonly caseSensitive?: boolean | undefined;
|
|
8534
6723
|
readonly autonumberFormat?: string | undefined;
|
|
8535
6724
|
readonly index?: boolean | undefined;
|
|
@@ -8551,7 +6740,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8551
6740
|
readonly required?: boolean | undefined;
|
|
8552
6741
|
readonly multiple?: boolean | undefined;
|
|
8553
6742
|
readonly dependencies?: string[] | undefined;
|
|
8554
|
-
readonly theme?: string | undefined;
|
|
8555
6743
|
readonly externalId?: boolean | undefined;
|
|
8556
6744
|
readonly defaultValue?: unknown;
|
|
8557
6745
|
readonly group?: string | undefined;
|
|
@@ -8559,23 +6747,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
8559
6747
|
readonly system?: boolean | undefined;
|
|
8560
6748
|
readonly min?: number | undefined;
|
|
8561
6749
|
readonly max?: number | undefined;
|
|
8562
|
-
readonly
|
|
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;
|
|
6750
|
+
readonly dimensions?: number | undefined;
|
|
8579
6751
|
readonly columnName?: string | undefined;
|
|
8580
6752
|
readonly searchable?: boolean | undefined;
|
|
8581
6753
|
readonly unique?: boolean | undefined;
|
|
@@ -8584,7 +6756,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8584
6756
|
readonly scale?: number | undefined;
|
|
8585
6757
|
readonly reference?: string | undefined;
|
|
8586
6758
|
readonly referenceFilters?: string[] | undefined;
|
|
8587
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8588
6759
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8589
6760
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8590
6761
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8609,22 +6780,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
8609
6780
|
relationshipField?: string | undefined;
|
|
8610
6781
|
} | undefined;
|
|
8611
6782
|
readonly language?: string | undefined;
|
|
8612
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8613
6783
|
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
6784
|
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
6785
|
readonly currencyConfig?: {
|
|
8629
6786
|
precision: number;
|
|
8630
6787
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8678,29 +6835,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
8678
6835
|
} | undefined;
|
|
8679
6836
|
maxVersions?: number | undefined;
|
|
8680
6837
|
} | 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;
|
|
6838
|
+
readonly trackHistory?: boolean | undefined;
|
|
8704
6839
|
readonly visibleWhen?: {
|
|
8705
6840
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8706
6841
|
source?: string | undefined;
|
|
@@ -8739,7 +6874,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8739
6874
|
} | undefined;
|
|
8740
6875
|
readonly sortable?: boolean | undefined;
|
|
8741
6876
|
readonly inlineHelpText?: string | undefined;
|
|
8742
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8743
6877
|
readonly caseSensitive?: boolean | undefined;
|
|
8744
6878
|
readonly autonumberFormat?: string | undefined;
|
|
8745
6879
|
readonly index?: boolean | undefined;
|
|
@@ -8761,7 +6895,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8761
6895
|
readonly required?: boolean | undefined;
|
|
8762
6896
|
readonly multiple?: boolean | undefined;
|
|
8763
6897
|
readonly dependencies?: string[] | undefined;
|
|
8764
|
-
readonly theme?: string | undefined;
|
|
8765
6898
|
readonly externalId?: boolean | undefined;
|
|
8766
6899
|
readonly defaultValue?: unknown;
|
|
8767
6900
|
readonly group?: string | undefined;
|
|
@@ -8769,23 +6902,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
8769
6902
|
readonly system?: boolean | undefined;
|
|
8770
6903
|
readonly min?: number | undefined;
|
|
8771
6904
|
readonly max?: number | undefined;
|
|
8772
|
-
readonly
|
|
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;
|
|
6905
|
+
readonly dimensions?: number | undefined;
|
|
8789
6906
|
readonly columnName?: string | undefined;
|
|
8790
6907
|
readonly searchable?: boolean | undefined;
|
|
8791
6908
|
readonly unique?: boolean | undefined;
|
|
@@ -8794,7 +6911,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8794
6911
|
readonly scale?: number | undefined;
|
|
8795
6912
|
readonly reference?: string | undefined;
|
|
8796
6913
|
readonly referenceFilters?: string[] | undefined;
|
|
8797
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
8798
6914
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
8799
6915
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
8800
6916
|
readonly inlineTitle?: string | undefined;
|
|
@@ -8819,22 +6935,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
8819
6935
|
relationshipField?: string | undefined;
|
|
8820
6936
|
} | undefined;
|
|
8821
6937
|
readonly language?: string | undefined;
|
|
8822
|
-
readonly lineNumbers?: boolean | undefined;
|
|
8823
6938
|
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
6939
|
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
6940
|
readonly currencyConfig?: {
|
|
8839
6941
|
precision: number;
|
|
8840
6942
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -8888,29 +6990,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
8888
6990
|
} | undefined;
|
|
8889
6991
|
maxVersions?: number | undefined;
|
|
8890
6992
|
} | 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;
|
|
6993
|
+
readonly trackHistory?: boolean | undefined;
|
|
8914
6994
|
readonly visibleWhen?: {
|
|
8915
6995
|
dialect: "cel" | "js" | "cron" | "template";
|
|
8916
6996
|
source?: string | undefined;
|
|
@@ -8949,7 +7029,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8949
7029
|
} | undefined;
|
|
8950
7030
|
readonly sortable?: boolean | undefined;
|
|
8951
7031
|
readonly inlineHelpText?: string | undefined;
|
|
8952
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
8953
7032
|
readonly caseSensitive?: boolean | undefined;
|
|
8954
7033
|
readonly autonumberFormat?: string | undefined;
|
|
8955
7034
|
readonly index?: boolean | undefined;
|
|
@@ -8971,7 +7050,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
8971
7050
|
readonly required?: boolean | undefined;
|
|
8972
7051
|
readonly multiple?: boolean | undefined;
|
|
8973
7052
|
readonly dependencies?: string[] | undefined;
|
|
8974
|
-
readonly theme?: string | undefined;
|
|
8975
7053
|
readonly externalId?: boolean | undefined;
|
|
8976
7054
|
readonly defaultValue?: unknown;
|
|
8977
7055
|
readonly group?: string | undefined;
|
|
@@ -8979,23 +7057,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
8979
7057
|
readonly system?: boolean | undefined;
|
|
8980
7058
|
readonly min?: number | undefined;
|
|
8981
7059
|
readonly max?: number | undefined;
|
|
8982
|
-
readonly
|
|
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;
|
|
7060
|
+
readonly dimensions?: number | undefined;
|
|
8999
7061
|
readonly columnName?: string | undefined;
|
|
9000
7062
|
readonly searchable?: boolean | undefined;
|
|
9001
7063
|
readonly unique?: boolean | undefined;
|
|
@@ -9004,7 +7066,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
9004
7066
|
readonly scale?: number | undefined;
|
|
9005
7067
|
readonly reference?: string | undefined;
|
|
9006
7068
|
readonly referenceFilters?: string[] | undefined;
|
|
9007
|
-
readonly writeRequiresMasterRead?: boolean | undefined;
|
|
9008
7069
|
readonly deleteBehavior?: "set_null" | "cascade" | "restrict" | undefined;
|
|
9009
7070
|
readonly inlineEdit?: boolean | "grid" | "form" | undefined;
|
|
9010
7071
|
readonly inlineTitle?: string | undefined;
|
|
@@ -9029,22 +7090,8 @@ declare const SystemUploadSession: Omit<{
|
|
|
9029
7090
|
relationshipField?: string | undefined;
|
|
9030
7091
|
} | undefined;
|
|
9031
7092
|
readonly language?: string | undefined;
|
|
9032
|
-
readonly lineNumbers?: boolean | undefined;
|
|
9033
7093
|
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
7094
|
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
7095
|
readonly currencyConfig?: {
|
|
9049
7096
|
precision: number;
|
|
9050
7097
|
currencyMode: "fixed" | "dynamic";
|
|
@@ -9098,29 +7145,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
9098
7145
|
} | undefined;
|
|
9099
7146
|
maxVersions?: number | undefined;
|
|
9100
7147
|
} | 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;
|
|
7148
|
+
readonly trackHistory?: boolean | undefined;
|
|
9124
7149
|
readonly visibleWhen?: {
|
|
9125
7150
|
dialect: "cel" | "js" | "cron" | "template";
|
|
9126
7151
|
source?: string | undefined;
|
|
@@ -9159,7 +7184,6 @@ declare const SystemUploadSession: Omit<{
|
|
|
9159
7184
|
} | undefined;
|
|
9160
7185
|
readonly sortable?: boolean | undefined;
|
|
9161
7186
|
readonly inlineHelpText?: string | undefined;
|
|
9162
|
-
readonly trackFeedHistory?: boolean | undefined;
|
|
9163
7187
|
readonly caseSensitive?: boolean | undefined;
|
|
9164
7188
|
readonly autonumberFormat?: string | undefined;
|
|
9165
7189
|
readonly index?: boolean | undefined;
|