@objectstack/service-storage 9.10.0 → 10.0.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.d.cts +710 -8
- package/dist/index.d.ts +710 -8
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -440,7 +440,7 @@ declare const SystemFile: Omit<{
|
|
|
440
440
|
abstract: boolean;
|
|
441
441
|
datasource: string;
|
|
442
442
|
fields: Record<string, {
|
|
443
|
-
type: "number" | "boolean" | "date" | "record" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "lookup" | "master_detail" | "
|
|
443
|
+
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
444
444
|
required: boolean;
|
|
445
445
|
searchable: boolean;
|
|
446
446
|
multiple: boolean;
|
|
@@ -478,6 +478,25 @@ declare const SystemFile: Omit<{
|
|
|
478
478
|
relatedList?: boolean | undefined;
|
|
479
479
|
relatedListTitle?: string | undefined;
|
|
480
480
|
relatedListColumns?: any[] | undefined;
|
|
481
|
+
displayField?: string | undefined;
|
|
482
|
+
descriptionField?: string | undefined;
|
|
483
|
+
lookupColumns?: (string | {
|
|
484
|
+
field: string;
|
|
485
|
+
label?: string | undefined;
|
|
486
|
+
width?: string | undefined;
|
|
487
|
+
type?: string | undefined;
|
|
488
|
+
})[] | undefined;
|
|
489
|
+
lookupPageSize?: number | undefined;
|
|
490
|
+
lookupFilters?: {
|
|
491
|
+
field: string;
|
|
492
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
493
|
+
value: any;
|
|
494
|
+
}[] | undefined;
|
|
495
|
+
dependsOn?: (string | {
|
|
496
|
+
field: string;
|
|
497
|
+
param?: string | undefined;
|
|
498
|
+
})[] | undefined;
|
|
499
|
+
allowCreate?: boolean | undefined;
|
|
481
500
|
expression?: {
|
|
482
501
|
dialect: "cel" | "js" | "cron" | "template";
|
|
483
502
|
source?: string | undefined;
|
|
@@ -753,7 +772,7 @@ declare const SystemFile: Omit<{
|
|
|
753
772
|
} | undefined;
|
|
754
773
|
compactLayout?: string[] | undefined;
|
|
755
774
|
listViews?: Record<string, {
|
|
756
|
-
type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
|
|
775
|
+
type: "map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
|
|
757
776
|
columns: string[] | {
|
|
758
777
|
field: string;
|
|
759
778
|
label?: string | undefined;
|
|
@@ -870,6 +889,7 @@ declare const SystemFile: Omit<{
|
|
|
870
889
|
colorField?: string | undefined;
|
|
871
890
|
} | undefined;
|
|
872
891
|
gantt?: {
|
|
892
|
+
[x: string]: unknown;
|
|
873
893
|
startDateField: string;
|
|
874
894
|
endDateField: string;
|
|
875
895
|
titleField: string;
|
|
@@ -920,6 +940,13 @@ declare const SystemFile: Omit<{
|
|
|
920
940
|
values: string[];
|
|
921
941
|
dimensions?: string[] | undefined;
|
|
922
942
|
} | undefined;
|
|
943
|
+
tree?: {
|
|
944
|
+
[x: string]: unknown;
|
|
945
|
+
parentField?: string | undefined;
|
|
946
|
+
labelField?: string | undefined;
|
|
947
|
+
fields?: string[] | undefined;
|
|
948
|
+
defaultExpandedDepth?: number | undefined;
|
|
949
|
+
} | undefined;
|
|
923
950
|
description?: string | undefined;
|
|
924
951
|
sharing?: {
|
|
925
952
|
type: "personal" | "collaborative";
|
|
@@ -975,7 +1002,7 @@ declare const SystemFile: Omit<{
|
|
|
975
1002
|
} | undefined;
|
|
976
1003
|
appearance?: {
|
|
977
1004
|
showDescription: boolean;
|
|
978
|
-
allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
|
|
1005
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
|
|
979
1006
|
} | undefined;
|
|
980
1007
|
tabs?: {
|
|
981
1008
|
name: string;
|
|
@@ -1044,6 +1071,7 @@ declare const SystemFile: Omit<{
|
|
|
1044
1071
|
} | undefined;
|
|
1045
1072
|
}> | undefined;
|
|
1046
1073
|
defaultDetailForm?: string | undefined;
|
|
1074
|
+
searchableFields?: string[] | undefined;
|
|
1047
1075
|
search?: {
|
|
1048
1076
|
fields: string[];
|
|
1049
1077
|
displayFields?: string[] | undefined;
|
|
@@ -1061,7 +1089,7 @@ declare const SystemFile: Omit<{
|
|
|
1061
1089
|
clone: boolean;
|
|
1062
1090
|
apiMethods?: ("get" | "delete" | "list" | "search" | "upsert" | "create" | "import" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
1063
1091
|
} | undefined;
|
|
1064
|
-
sharingModel?: "private" | "full" | "read" | "read_write" | undefined;
|
|
1092
|
+
sharingModel?: "private" | "full" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
1065
1093
|
publicSharing?: {
|
|
1066
1094
|
enabled: boolean;
|
|
1067
1095
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -1233,6 +1261,25 @@ declare const SystemFile: Omit<{
|
|
|
1233
1261
|
readonly relatedList?: boolean | undefined;
|
|
1234
1262
|
readonly relatedListTitle?: string | undefined;
|
|
1235
1263
|
readonly relatedListColumns?: any[] | undefined;
|
|
1264
|
+
readonly displayField?: string | undefined;
|
|
1265
|
+
readonly descriptionField?: string | undefined;
|
|
1266
|
+
readonly lookupColumns?: (string | {
|
|
1267
|
+
field: string;
|
|
1268
|
+
label?: string | undefined;
|
|
1269
|
+
width?: string | undefined;
|
|
1270
|
+
type?: string | undefined;
|
|
1271
|
+
})[] | undefined;
|
|
1272
|
+
readonly lookupPageSize?: number | undefined;
|
|
1273
|
+
readonly lookupFilters?: {
|
|
1274
|
+
field: string;
|
|
1275
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
1276
|
+
value: any;
|
|
1277
|
+
}[] | undefined;
|
|
1278
|
+
readonly dependsOn?: (string | {
|
|
1279
|
+
field: string;
|
|
1280
|
+
param?: string | undefined;
|
|
1281
|
+
})[] | undefined;
|
|
1282
|
+
readonly allowCreate?: boolean | undefined;
|
|
1236
1283
|
readonly expression?: {
|
|
1237
1284
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1238
1285
|
source?: string | undefined;
|
|
@@ -1388,6 +1435,25 @@ declare const SystemFile: Omit<{
|
|
|
1388
1435
|
readonly relatedList?: boolean | undefined;
|
|
1389
1436
|
readonly relatedListTitle?: string | undefined;
|
|
1390
1437
|
readonly relatedListColumns?: any[] | undefined;
|
|
1438
|
+
readonly displayField?: string | undefined;
|
|
1439
|
+
readonly descriptionField?: string | undefined;
|
|
1440
|
+
readonly lookupColumns?: (string | {
|
|
1441
|
+
field: string;
|
|
1442
|
+
label?: string | undefined;
|
|
1443
|
+
width?: string | undefined;
|
|
1444
|
+
type?: string | undefined;
|
|
1445
|
+
})[] | undefined;
|
|
1446
|
+
readonly lookupPageSize?: number | undefined;
|
|
1447
|
+
readonly lookupFilters?: {
|
|
1448
|
+
field: string;
|
|
1449
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
1450
|
+
value: any;
|
|
1451
|
+
}[] | undefined;
|
|
1452
|
+
readonly dependsOn?: (string | {
|
|
1453
|
+
field: string;
|
|
1454
|
+
param?: string | undefined;
|
|
1455
|
+
})[] | undefined;
|
|
1456
|
+
readonly allowCreate?: boolean | undefined;
|
|
1391
1457
|
readonly expression?: {
|
|
1392
1458
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1393
1459
|
source?: string | undefined;
|
|
@@ -1543,6 +1609,25 @@ declare const SystemFile: Omit<{
|
|
|
1543
1609
|
readonly relatedList?: boolean | undefined;
|
|
1544
1610
|
readonly relatedListTitle?: string | undefined;
|
|
1545
1611
|
readonly relatedListColumns?: any[] | undefined;
|
|
1612
|
+
readonly displayField?: string | undefined;
|
|
1613
|
+
readonly descriptionField?: string | undefined;
|
|
1614
|
+
readonly lookupColumns?: (string | {
|
|
1615
|
+
field: string;
|
|
1616
|
+
label?: string | undefined;
|
|
1617
|
+
width?: string | undefined;
|
|
1618
|
+
type?: string | undefined;
|
|
1619
|
+
})[] | undefined;
|
|
1620
|
+
readonly lookupPageSize?: number | undefined;
|
|
1621
|
+
readonly lookupFilters?: {
|
|
1622
|
+
field: string;
|
|
1623
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
1624
|
+
value: any;
|
|
1625
|
+
}[] | undefined;
|
|
1626
|
+
readonly dependsOn?: (string | {
|
|
1627
|
+
field: string;
|
|
1628
|
+
param?: string | undefined;
|
|
1629
|
+
})[] | undefined;
|
|
1630
|
+
readonly allowCreate?: boolean | undefined;
|
|
1546
1631
|
readonly expression?: {
|
|
1547
1632
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1548
1633
|
source?: string | undefined;
|
|
@@ -1698,6 +1783,25 @@ declare const SystemFile: Omit<{
|
|
|
1698
1783
|
readonly relatedList?: boolean | undefined;
|
|
1699
1784
|
readonly relatedListTitle?: string | undefined;
|
|
1700
1785
|
readonly relatedListColumns?: any[] | undefined;
|
|
1786
|
+
readonly displayField?: string | undefined;
|
|
1787
|
+
readonly descriptionField?: string | undefined;
|
|
1788
|
+
readonly lookupColumns?: (string | {
|
|
1789
|
+
field: string;
|
|
1790
|
+
label?: string | undefined;
|
|
1791
|
+
width?: string | undefined;
|
|
1792
|
+
type?: string | undefined;
|
|
1793
|
+
})[] | undefined;
|
|
1794
|
+
readonly lookupPageSize?: number | undefined;
|
|
1795
|
+
readonly lookupFilters?: {
|
|
1796
|
+
field: string;
|
|
1797
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
1798
|
+
value: any;
|
|
1799
|
+
}[] | undefined;
|
|
1800
|
+
readonly dependsOn?: (string | {
|
|
1801
|
+
field: string;
|
|
1802
|
+
param?: string | undefined;
|
|
1803
|
+
})[] | undefined;
|
|
1804
|
+
readonly allowCreate?: boolean | undefined;
|
|
1701
1805
|
readonly expression?: {
|
|
1702
1806
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1703
1807
|
source?: string | undefined;
|
|
@@ -1853,6 +1957,25 @@ declare const SystemFile: Omit<{
|
|
|
1853
1957
|
readonly relatedList?: boolean | undefined;
|
|
1854
1958
|
readonly relatedListTitle?: string | undefined;
|
|
1855
1959
|
readonly relatedListColumns?: any[] | undefined;
|
|
1960
|
+
readonly displayField?: string | undefined;
|
|
1961
|
+
readonly descriptionField?: string | undefined;
|
|
1962
|
+
readonly lookupColumns?: (string | {
|
|
1963
|
+
field: string;
|
|
1964
|
+
label?: string | undefined;
|
|
1965
|
+
width?: string | undefined;
|
|
1966
|
+
type?: string | undefined;
|
|
1967
|
+
})[] | undefined;
|
|
1968
|
+
readonly lookupPageSize?: number | undefined;
|
|
1969
|
+
readonly lookupFilters?: {
|
|
1970
|
+
field: string;
|
|
1971
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
1972
|
+
value: any;
|
|
1973
|
+
}[] | undefined;
|
|
1974
|
+
readonly dependsOn?: (string | {
|
|
1975
|
+
field: string;
|
|
1976
|
+
param?: string | undefined;
|
|
1977
|
+
})[] | undefined;
|
|
1978
|
+
readonly allowCreate?: boolean | undefined;
|
|
1856
1979
|
readonly expression?: {
|
|
1857
1980
|
dialect: "cel" | "js" | "cron" | "template";
|
|
1858
1981
|
source?: string | undefined;
|
|
@@ -2008,6 +2131,25 @@ declare const SystemFile: Omit<{
|
|
|
2008
2131
|
readonly relatedList?: boolean | undefined;
|
|
2009
2132
|
readonly relatedListTitle?: string | undefined;
|
|
2010
2133
|
readonly relatedListColumns?: any[] | undefined;
|
|
2134
|
+
readonly displayField?: string | undefined;
|
|
2135
|
+
readonly descriptionField?: string | undefined;
|
|
2136
|
+
readonly lookupColumns?: (string | {
|
|
2137
|
+
field: string;
|
|
2138
|
+
label?: string | undefined;
|
|
2139
|
+
width?: string | undefined;
|
|
2140
|
+
type?: string | undefined;
|
|
2141
|
+
})[] | undefined;
|
|
2142
|
+
readonly lookupPageSize?: number | undefined;
|
|
2143
|
+
readonly lookupFilters?: {
|
|
2144
|
+
field: string;
|
|
2145
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
2146
|
+
value: any;
|
|
2147
|
+
}[] | undefined;
|
|
2148
|
+
readonly dependsOn?: (string | {
|
|
2149
|
+
field: string;
|
|
2150
|
+
param?: string | undefined;
|
|
2151
|
+
})[] | undefined;
|
|
2152
|
+
readonly allowCreate?: boolean | undefined;
|
|
2011
2153
|
readonly expression?: {
|
|
2012
2154
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2013
2155
|
source?: string | undefined;
|
|
@@ -2163,6 +2305,25 @@ declare const SystemFile: Omit<{
|
|
|
2163
2305
|
readonly relatedList?: boolean | undefined;
|
|
2164
2306
|
readonly relatedListTitle?: string | undefined;
|
|
2165
2307
|
readonly relatedListColumns?: any[] | undefined;
|
|
2308
|
+
readonly displayField?: string | undefined;
|
|
2309
|
+
readonly descriptionField?: string | undefined;
|
|
2310
|
+
readonly lookupColumns?: (string | {
|
|
2311
|
+
field: string;
|
|
2312
|
+
label?: string | undefined;
|
|
2313
|
+
width?: string | undefined;
|
|
2314
|
+
type?: string | undefined;
|
|
2315
|
+
})[] | undefined;
|
|
2316
|
+
readonly lookupPageSize?: number | undefined;
|
|
2317
|
+
readonly lookupFilters?: {
|
|
2318
|
+
field: string;
|
|
2319
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
2320
|
+
value: any;
|
|
2321
|
+
}[] | undefined;
|
|
2322
|
+
readonly dependsOn?: (string | {
|
|
2323
|
+
field: string;
|
|
2324
|
+
param?: string | undefined;
|
|
2325
|
+
})[] | undefined;
|
|
2326
|
+
readonly allowCreate?: boolean | undefined;
|
|
2166
2327
|
readonly expression?: {
|
|
2167
2328
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2168
2329
|
source?: string | undefined;
|
|
@@ -2318,6 +2479,25 @@ declare const SystemFile: Omit<{
|
|
|
2318
2479
|
readonly relatedList?: boolean | undefined;
|
|
2319
2480
|
readonly relatedListTitle?: string | undefined;
|
|
2320
2481
|
readonly relatedListColumns?: any[] | undefined;
|
|
2482
|
+
readonly displayField?: string | undefined;
|
|
2483
|
+
readonly descriptionField?: string | undefined;
|
|
2484
|
+
readonly lookupColumns?: (string | {
|
|
2485
|
+
field: string;
|
|
2486
|
+
label?: string | undefined;
|
|
2487
|
+
width?: string | undefined;
|
|
2488
|
+
type?: string | undefined;
|
|
2489
|
+
})[] | undefined;
|
|
2490
|
+
readonly lookupPageSize?: number | undefined;
|
|
2491
|
+
readonly lookupFilters?: {
|
|
2492
|
+
field: string;
|
|
2493
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
2494
|
+
value: any;
|
|
2495
|
+
}[] | undefined;
|
|
2496
|
+
readonly dependsOn?: (string | {
|
|
2497
|
+
field: string;
|
|
2498
|
+
param?: string | undefined;
|
|
2499
|
+
})[] | undefined;
|
|
2500
|
+
readonly allowCreate?: boolean | undefined;
|
|
2321
2501
|
readonly expression?: {
|
|
2322
2502
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2323
2503
|
source?: string | undefined;
|
|
@@ -2473,6 +2653,25 @@ declare const SystemFile: Omit<{
|
|
|
2473
2653
|
readonly relatedList?: boolean | undefined;
|
|
2474
2654
|
readonly relatedListTitle?: string | undefined;
|
|
2475
2655
|
readonly relatedListColumns?: any[] | undefined;
|
|
2656
|
+
readonly displayField?: string | undefined;
|
|
2657
|
+
readonly descriptionField?: string | undefined;
|
|
2658
|
+
readonly lookupColumns?: (string | {
|
|
2659
|
+
field: string;
|
|
2660
|
+
label?: string | undefined;
|
|
2661
|
+
width?: string | undefined;
|
|
2662
|
+
type?: string | undefined;
|
|
2663
|
+
})[] | undefined;
|
|
2664
|
+
readonly lookupPageSize?: number | undefined;
|
|
2665
|
+
readonly lookupFilters?: {
|
|
2666
|
+
field: string;
|
|
2667
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
2668
|
+
value: any;
|
|
2669
|
+
}[] | undefined;
|
|
2670
|
+
readonly dependsOn?: (string | {
|
|
2671
|
+
field: string;
|
|
2672
|
+
param?: string | undefined;
|
|
2673
|
+
})[] | undefined;
|
|
2674
|
+
readonly allowCreate?: boolean | undefined;
|
|
2476
2675
|
readonly expression?: {
|
|
2477
2676
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2478
2677
|
source?: string | undefined;
|
|
@@ -2628,6 +2827,25 @@ declare const SystemFile: Omit<{
|
|
|
2628
2827
|
readonly relatedList?: boolean | undefined;
|
|
2629
2828
|
readonly relatedListTitle?: string | undefined;
|
|
2630
2829
|
readonly relatedListColumns?: any[] | undefined;
|
|
2830
|
+
readonly displayField?: string | undefined;
|
|
2831
|
+
readonly descriptionField?: string | undefined;
|
|
2832
|
+
readonly lookupColumns?: (string | {
|
|
2833
|
+
field: string;
|
|
2834
|
+
label?: string | undefined;
|
|
2835
|
+
width?: string | undefined;
|
|
2836
|
+
type?: string | undefined;
|
|
2837
|
+
})[] | undefined;
|
|
2838
|
+
readonly lookupPageSize?: number | undefined;
|
|
2839
|
+
readonly lookupFilters?: {
|
|
2840
|
+
field: string;
|
|
2841
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
2842
|
+
value: any;
|
|
2843
|
+
}[] | undefined;
|
|
2844
|
+
readonly dependsOn?: (string | {
|
|
2845
|
+
field: string;
|
|
2846
|
+
param?: string | undefined;
|
|
2847
|
+
})[] | undefined;
|
|
2848
|
+
readonly allowCreate?: boolean | undefined;
|
|
2631
2849
|
readonly expression?: {
|
|
2632
2850
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2633
2851
|
source?: string | undefined;
|
|
@@ -2783,6 +3001,25 @@ declare const SystemFile: Omit<{
|
|
|
2783
3001
|
readonly relatedList?: boolean | undefined;
|
|
2784
3002
|
readonly relatedListTitle?: string | undefined;
|
|
2785
3003
|
readonly relatedListColumns?: any[] | undefined;
|
|
3004
|
+
readonly displayField?: string | undefined;
|
|
3005
|
+
readonly descriptionField?: string | undefined;
|
|
3006
|
+
readonly lookupColumns?: (string | {
|
|
3007
|
+
field: string;
|
|
3008
|
+
label?: string | undefined;
|
|
3009
|
+
width?: string | undefined;
|
|
3010
|
+
type?: string | undefined;
|
|
3011
|
+
})[] | undefined;
|
|
3012
|
+
readonly lookupPageSize?: number | undefined;
|
|
3013
|
+
readonly lookupFilters?: {
|
|
3014
|
+
field: string;
|
|
3015
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
3016
|
+
value: any;
|
|
3017
|
+
}[] | undefined;
|
|
3018
|
+
readonly dependsOn?: (string | {
|
|
3019
|
+
field: string;
|
|
3020
|
+
param?: string | undefined;
|
|
3021
|
+
})[] | undefined;
|
|
3022
|
+
readonly allowCreate?: boolean | undefined;
|
|
2786
3023
|
readonly expression?: {
|
|
2787
3024
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2788
3025
|
source?: string | undefined;
|
|
@@ -2938,6 +3175,25 @@ declare const SystemFile: Omit<{
|
|
|
2938
3175
|
readonly relatedList?: boolean | undefined;
|
|
2939
3176
|
readonly relatedListTitle?: string | undefined;
|
|
2940
3177
|
readonly relatedListColumns?: any[] | undefined;
|
|
3178
|
+
readonly displayField?: string | undefined;
|
|
3179
|
+
readonly descriptionField?: string | undefined;
|
|
3180
|
+
readonly lookupColumns?: (string | {
|
|
3181
|
+
field: string;
|
|
3182
|
+
label?: string | undefined;
|
|
3183
|
+
width?: string | undefined;
|
|
3184
|
+
type?: string | undefined;
|
|
3185
|
+
})[] | undefined;
|
|
3186
|
+
readonly lookupPageSize?: number | undefined;
|
|
3187
|
+
readonly lookupFilters?: {
|
|
3188
|
+
field: string;
|
|
3189
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
3190
|
+
value: any;
|
|
3191
|
+
}[] | undefined;
|
|
3192
|
+
readonly dependsOn?: (string | {
|
|
3193
|
+
field: string;
|
|
3194
|
+
param?: string | undefined;
|
|
3195
|
+
})[] | undefined;
|
|
3196
|
+
readonly allowCreate?: boolean | undefined;
|
|
2941
3197
|
readonly expression?: {
|
|
2942
3198
|
dialect: "cel" | "js" | "cron" | "template";
|
|
2943
3199
|
source?: string | undefined;
|
|
@@ -3093,6 +3349,25 @@ declare const SystemFile: Omit<{
|
|
|
3093
3349
|
readonly relatedList?: boolean | undefined;
|
|
3094
3350
|
readonly relatedListTitle?: string | undefined;
|
|
3095
3351
|
readonly relatedListColumns?: any[] | undefined;
|
|
3352
|
+
readonly displayField?: string | undefined;
|
|
3353
|
+
readonly descriptionField?: string | undefined;
|
|
3354
|
+
readonly lookupColumns?: (string | {
|
|
3355
|
+
field: string;
|
|
3356
|
+
label?: string | undefined;
|
|
3357
|
+
width?: string | undefined;
|
|
3358
|
+
type?: string | undefined;
|
|
3359
|
+
})[] | undefined;
|
|
3360
|
+
readonly lookupPageSize?: number | undefined;
|
|
3361
|
+
readonly lookupFilters?: {
|
|
3362
|
+
field: string;
|
|
3363
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
3364
|
+
value: any;
|
|
3365
|
+
}[] | undefined;
|
|
3366
|
+
readonly dependsOn?: (string | {
|
|
3367
|
+
field: string;
|
|
3368
|
+
param?: string | undefined;
|
|
3369
|
+
})[] | undefined;
|
|
3370
|
+
readonly allowCreate?: boolean | undefined;
|
|
3096
3371
|
readonly expression?: {
|
|
3097
3372
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3098
3373
|
source?: string | undefined;
|
|
@@ -3248,6 +3523,25 @@ declare const SystemFile: Omit<{
|
|
|
3248
3523
|
readonly relatedList?: boolean | undefined;
|
|
3249
3524
|
readonly relatedListTitle?: string | undefined;
|
|
3250
3525
|
readonly relatedListColumns?: any[] | undefined;
|
|
3526
|
+
readonly displayField?: string | undefined;
|
|
3527
|
+
readonly descriptionField?: string | undefined;
|
|
3528
|
+
readonly lookupColumns?: (string | {
|
|
3529
|
+
field: string;
|
|
3530
|
+
label?: string | undefined;
|
|
3531
|
+
width?: string | undefined;
|
|
3532
|
+
type?: string | undefined;
|
|
3533
|
+
})[] | undefined;
|
|
3534
|
+
readonly lookupPageSize?: number | undefined;
|
|
3535
|
+
readonly lookupFilters?: {
|
|
3536
|
+
field: string;
|
|
3537
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
3538
|
+
value: any;
|
|
3539
|
+
}[] | undefined;
|
|
3540
|
+
readonly dependsOn?: (string | {
|
|
3541
|
+
field: string;
|
|
3542
|
+
param?: string | undefined;
|
|
3543
|
+
})[] | undefined;
|
|
3544
|
+
readonly allowCreate?: boolean | undefined;
|
|
3251
3545
|
readonly expression?: {
|
|
3252
3546
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3253
3547
|
source?: string | undefined;
|
|
@@ -3382,7 +3676,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3382
3676
|
abstract: boolean;
|
|
3383
3677
|
datasource: string;
|
|
3384
3678
|
fields: Record<string, {
|
|
3385
|
-
type: "number" | "boolean" | "date" | "record" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "lookup" | "master_detail" | "
|
|
3679
|
+
type: "number" | "boolean" | "email" | "currency" | "date" | "record" | "file" | "signature" | "tags" | "code" | "datetime" | "progress" | "url" | "lookup" | "master_detail" | "percent" | "password" | "secret" | "time" | "text" | "textarea" | "phone" | "markdown" | "html" | "richtext" | "toggle" | "select" | "multiselect" | "radio" | "checkboxes" | "tree" | "image" | "avatar" | "video" | "audio" | "formula" | "summary" | "autonumber" | "composite" | "repeater" | "location" | "address" | "json" | "color" | "rating" | "slider" | "qrcode" | "vector";
|
|
3386
3680
|
required: boolean;
|
|
3387
3681
|
searchable: boolean;
|
|
3388
3682
|
multiple: boolean;
|
|
@@ -3420,6 +3714,25 @@ declare const SystemUploadSession: Omit<{
|
|
|
3420
3714
|
relatedList?: boolean | undefined;
|
|
3421
3715
|
relatedListTitle?: string | undefined;
|
|
3422
3716
|
relatedListColumns?: any[] | undefined;
|
|
3717
|
+
displayField?: string | undefined;
|
|
3718
|
+
descriptionField?: string | undefined;
|
|
3719
|
+
lookupColumns?: (string | {
|
|
3720
|
+
field: string;
|
|
3721
|
+
label?: string | undefined;
|
|
3722
|
+
width?: string | undefined;
|
|
3723
|
+
type?: string | undefined;
|
|
3724
|
+
})[] | undefined;
|
|
3725
|
+
lookupPageSize?: number | undefined;
|
|
3726
|
+
lookupFilters?: {
|
|
3727
|
+
field: string;
|
|
3728
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
3729
|
+
value: any;
|
|
3730
|
+
}[] | undefined;
|
|
3731
|
+
dependsOn?: (string | {
|
|
3732
|
+
field: string;
|
|
3733
|
+
param?: string | undefined;
|
|
3734
|
+
})[] | undefined;
|
|
3735
|
+
allowCreate?: boolean | undefined;
|
|
3423
3736
|
expression?: {
|
|
3424
3737
|
dialect: "cel" | "js" | "cron" | "template";
|
|
3425
3738
|
source?: string | undefined;
|
|
@@ -3695,7 +4008,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3695
4008
|
} | undefined;
|
|
3696
4009
|
compactLayout?: string[] | undefined;
|
|
3697
4010
|
listViews?: Record<string, {
|
|
3698
|
-
type: "map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
|
|
4011
|
+
type: "map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart";
|
|
3699
4012
|
columns: string[] | {
|
|
3700
4013
|
field: string;
|
|
3701
4014
|
label?: string | undefined;
|
|
@@ -3812,6 +4125,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3812
4125
|
colorField?: string | undefined;
|
|
3813
4126
|
} | undefined;
|
|
3814
4127
|
gantt?: {
|
|
4128
|
+
[x: string]: unknown;
|
|
3815
4129
|
startDateField: string;
|
|
3816
4130
|
endDateField: string;
|
|
3817
4131
|
titleField: string;
|
|
@@ -3862,6 +4176,13 @@ declare const SystemUploadSession: Omit<{
|
|
|
3862
4176
|
values: string[];
|
|
3863
4177
|
dimensions?: string[] | undefined;
|
|
3864
4178
|
} | undefined;
|
|
4179
|
+
tree?: {
|
|
4180
|
+
[x: string]: unknown;
|
|
4181
|
+
parentField?: string | undefined;
|
|
4182
|
+
labelField?: string | undefined;
|
|
4183
|
+
fields?: string[] | undefined;
|
|
4184
|
+
defaultExpandedDepth?: number | undefined;
|
|
4185
|
+
} | undefined;
|
|
3865
4186
|
description?: string | undefined;
|
|
3866
4187
|
sharing?: {
|
|
3867
4188
|
type: "personal" | "collaborative";
|
|
@@ -3917,7 +4238,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3917
4238
|
} | undefined;
|
|
3918
4239
|
appearance?: {
|
|
3919
4240
|
showDescription: boolean;
|
|
3920
|
-
allowedVisualizations?: ("map" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
|
|
4241
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "calendar" | "gantt" | "gallery" | "timeline" | "chart")[] | undefined;
|
|
3921
4242
|
} | undefined;
|
|
3922
4243
|
tabs?: {
|
|
3923
4244
|
name: string;
|
|
@@ -3986,6 +4307,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
3986
4307
|
} | undefined;
|
|
3987
4308
|
}> | undefined;
|
|
3988
4309
|
defaultDetailForm?: string | undefined;
|
|
4310
|
+
searchableFields?: string[] | undefined;
|
|
3989
4311
|
search?: {
|
|
3990
4312
|
fields: string[];
|
|
3991
4313
|
displayFields?: string[] | undefined;
|
|
@@ -4003,7 +4325,7 @@ declare const SystemUploadSession: Omit<{
|
|
|
4003
4325
|
clone: boolean;
|
|
4004
4326
|
apiMethods?: ("get" | "delete" | "list" | "search" | "upsert" | "create" | "import" | "update" | "bulk" | "aggregate" | "history" | "restore" | "purge" | "export")[] | undefined;
|
|
4005
4327
|
} | undefined;
|
|
4006
|
-
sharingModel?: "private" | "full" | "read" | "read_write" | undefined;
|
|
4328
|
+
sharingModel?: "private" | "full" | "read" | "public_read" | "public_read_write" | "controlled_by_parent" | "read_write" | undefined;
|
|
4007
4329
|
publicSharing?: {
|
|
4008
4330
|
enabled: boolean;
|
|
4009
4331
|
allowedAudiences?: ("email" | "public" | "link_only" | "signed_in")[] | undefined;
|
|
@@ -4175,6 +4497,25 @@ declare const SystemUploadSession: Omit<{
|
|
|
4175
4497
|
readonly relatedList?: boolean | undefined;
|
|
4176
4498
|
readonly relatedListTitle?: string | undefined;
|
|
4177
4499
|
readonly relatedListColumns?: any[] | undefined;
|
|
4500
|
+
readonly displayField?: string | undefined;
|
|
4501
|
+
readonly descriptionField?: string | undefined;
|
|
4502
|
+
readonly lookupColumns?: (string | {
|
|
4503
|
+
field: string;
|
|
4504
|
+
label?: string | undefined;
|
|
4505
|
+
width?: string | undefined;
|
|
4506
|
+
type?: string | undefined;
|
|
4507
|
+
})[] | undefined;
|
|
4508
|
+
readonly lookupPageSize?: number | undefined;
|
|
4509
|
+
readonly lookupFilters?: {
|
|
4510
|
+
field: string;
|
|
4511
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
4512
|
+
value: any;
|
|
4513
|
+
}[] | undefined;
|
|
4514
|
+
readonly dependsOn?: (string | {
|
|
4515
|
+
field: string;
|
|
4516
|
+
param?: string | undefined;
|
|
4517
|
+
})[] | undefined;
|
|
4518
|
+
readonly allowCreate?: boolean | undefined;
|
|
4178
4519
|
readonly expression?: {
|
|
4179
4520
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4180
4521
|
source?: string | undefined;
|
|
@@ -4330,6 +4671,25 @@ declare const SystemUploadSession: Omit<{
|
|
|
4330
4671
|
readonly relatedList?: boolean | undefined;
|
|
4331
4672
|
readonly relatedListTitle?: string | undefined;
|
|
4332
4673
|
readonly relatedListColumns?: any[] | undefined;
|
|
4674
|
+
readonly displayField?: string | undefined;
|
|
4675
|
+
readonly descriptionField?: string | undefined;
|
|
4676
|
+
readonly lookupColumns?: (string | {
|
|
4677
|
+
field: string;
|
|
4678
|
+
label?: string | undefined;
|
|
4679
|
+
width?: string | undefined;
|
|
4680
|
+
type?: string | undefined;
|
|
4681
|
+
})[] | undefined;
|
|
4682
|
+
readonly lookupPageSize?: number | undefined;
|
|
4683
|
+
readonly lookupFilters?: {
|
|
4684
|
+
field: string;
|
|
4685
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
4686
|
+
value: any;
|
|
4687
|
+
}[] | undefined;
|
|
4688
|
+
readonly dependsOn?: (string | {
|
|
4689
|
+
field: string;
|
|
4690
|
+
param?: string | undefined;
|
|
4691
|
+
})[] | undefined;
|
|
4692
|
+
readonly allowCreate?: boolean | undefined;
|
|
4333
4693
|
readonly expression?: {
|
|
4334
4694
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4335
4695
|
source?: string | undefined;
|
|
@@ -4485,6 +4845,25 @@ declare const SystemUploadSession: Omit<{
|
|
|
4485
4845
|
readonly relatedList?: boolean | undefined;
|
|
4486
4846
|
readonly relatedListTitle?: string | undefined;
|
|
4487
4847
|
readonly relatedListColumns?: any[] | undefined;
|
|
4848
|
+
readonly displayField?: string | undefined;
|
|
4849
|
+
readonly descriptionField?: string | undefined;
|
|
4850
|
+
readonly lookupColumns?: (string | {
|
|
4851
|
+
field: string;
|
|
4852
|
+
label?: string | undefined;
|
|
4853
|
+
width?: string | undefined;
|
|
4854
|
+
type?: string | undefined;
|
|
4855
|
+
})[] | undefined;
|
|
4856
|
+
readonly lookupPageSize?: number | undefined;
|
|
4857
|
+
readonly lookupFilters?: {
|
|
4858
|
+
field: string;
|
|
4859
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
4860
|
+
value: any;
|
|
4861
|
+
}[] | undefined;
|
|
4862
|
+
readonly dependsOn?: (string | {
|
|
4863
|
+
field: string;
|
|
4864
|
+
param?: string | undefined;
|
|
4865
|
+
})[] | undefined;
|
|
4866
|
+
readonly allowCreate?: boolean | undefined;
|
|
4488
4867
|
readonly expression?: {
|
|
4489
4868
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4490
4869
|
source?: string | undefined;
|
|
@@ -4640,6 +5019,25 @@ declare const SystemUploadSession: Omit<{
|
|
|
4640
5019
|
readonly relatedList?: boolean | undefined;
|
|
4641
5020
|
readonly relatedListTitle?: string | undefined;
|
|
4642
5021
|
readonly relatedListColumns?: any[] | undefined;
|
|
5022
|
+
readonly displayField?: string | undefined;
|
|
5023
|
+
readonly descriptionField?: string | undefined;
|
|
5024
|
+
readonly lookupColumns?: (string | {
|
|
5025
|
+
field: string;
|
|
5026
|
+
label?: string | undefined;
|
|
5027
|
+
width?: string | undefined;
|
|
5028
|
+
type?: string | undefined;
|
|
5029
|
+
})[] | undefined;
|
|
5030
|
+
readonly lookupPageSize?: number | undefined;
|
|
5031
|
+
readonly lookupFilters?: {
|
|
5032
|
+
field: string;
|
|
5033
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
5034
|
+
value: any;
|
|
5035
|
+
}[] | undefined;
|
|
5036
|
+
readonly dependsOn?: (string | {
|
|
5037
|
+
field: string;
|
|
5038
|
+
param?: string | undefined;
|
|
5039
|
+
})[] | undefined;
|
|
5040
|
+
readonly allowCreate?: boolean | undefined;
|
|
4643
5041
|
readonly expression?: {
|
|
4644
5042
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4645
5043
|
source?: string | undefined;
|
|
@@ -4795,6 +5193,25 @@ declare const SystemUploadSession: Omit<{
|
|
|
4795
5193
|
readonly relatedList?: boolean | undefined;
|
|
4796
5194
|
readonly relatedListTitle?: string | undefined;
|
|
4797
5195
|
readonly relatedListColumns?: any[] | undefined;
|
|
5196
|
+
readonly displayField?: string | undefined;
|
|
5197
|
+
readonly descriptionField?: string | undefined;
|
|
5198
|
+
readonly lookupColumns?: (string | {
|
|
5199
|
+
field: string;
|
|
5200
|
+
label?: string | undefined;
|
|
5201
|
+
width?: string | undefined;
|
|
5202
|
+
type?: string | undefined;
|
|
5203
|
+
})[] | undefined;
|
|
5204
|
+
readonly lookupPageSize?: number | undefined;
|
|
5205
|
+
readonly lookupFilters?: {
|
|
5206
|
+
field: string;
|
|
5207
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
5208
|
+
value: any;
|
|
5209
|
+
}[] | undefined;
|
|
5210
|
+
readonly dependsOn?: (string | {
|
|
5211
|
+
field: string;
|
|
5212
|
+
param?: string | undefined;
|
|
5213
|
+
})[] | undefined;
|
|
5214
|
+
readonly allowCreate?: boolean | undefined;
|
|
4798
5215
|
readonly expression?: {
|
|
4799
5216
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4800
5217
|
source?: string | undefined;
|
|
@@ -4950,6 +5367,25 @@ declare const SystemUploadSession: Omit<{
|
|
|
4950
5367
|
readonly relatedList?: boolean | undefined;
|
|
4951
5368
|
readonly relatedListTitle?: string | undefined;
|
|
4952
5369
|
readonly relatedListColumns?: any[] | undefined;
|
|
5370
|
+
readonly displayField?: string | undefined;
|
|
5371
|
+
readonly descriptionField?: string | undefined;
|
|
5372
|
+
readonly lookupColumns?: (string | {
|
|
5373
|
+
field: string;
|
|
5374
|
+
label?: string | undefined;
|
|
5375
|
+
width?: string | undefined;
|
|
5376
|
+
type?: string | undefined;
|
|
5377
|
+
})[] | undefined;
|
|
5378
|
+
readonly lookupPageSize?: number | undefined;
|
|
5379
|
+
readonly lookupFilters?: {
|
|
5380
|
+
field: string;
|
|
5381
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
5382
|
+
value: any;
|
|
5383
|
+
}[] | undefined;
|
|
5384
|
+
readonly dependsOn?: (string | {
|
|
5385
|
+
field: string;
|
|
5386
|
+
param?: string | undefined;
|
|
5387
|
+
})[] | undefined;
|
|
5388
|
+
readonly allowCreate?: boolean | undefined;
|
|
4953
5389
|
readonly expression?: {
|
|
4954
5390
|
dialect: "cel" | "js" | "cron" | "template";
|
|
4955
5391
|
source?: string | undefined;
|
|
@@ -5105,6 +5541,25 @@ declare const SystemUploadSession: Omit<{
|
|
|
5105
5541
|
readonly relatedList?: boolean | undefined;
|
|
5106
5542
|
readonly relatedListTitle?: string | undefined;
|
|
5107
5543
|
readonly relatedListColumns?: any[] | undefined;
|
|
5544
|
+
readonly displayField?: string | undefined;
|
|
5545
|
+
readonly descriptionField?: string | undefined;
|
|
5546
|
+
readonly lookupColumns?: (string | {
|
|
5547
|
+
field: string;
|
|
5548
|
+
label?: string | undefined;
|
|
5549
|
+
width?: string | undefined;
|
|
5550
|
+
type?: string | undefined;
|
|
5551
|
+
})[] | undefined;
|
|
5552
|
+
readonly lookupPageSize?: number | undefined;
|
|
5553
|
+
readonly lookupFilters?: {
|
|
5554
|
+
field: string;
|
|
5555
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
5556
|
+
value: any;
|
|
5557
|
+
}[] | undefined;
|
|
5558
|
+
readonly dependsOn?: (string | {
|
|
5559
|
+
field: string;
|
|
5560
|
+
param?: string | undefined;
|
|
5561
|
+
})[] | undefined;
|
|
5562
|
+
readonly allowCreate?: boolean | undefined;
|
|
5108
5563
|
readonly expression?: {
|
|
5109
5564
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5110
5565
|
source?: string | undefined;
|
|
@@ -5260,6 +5715,25 @@ declare const SystemUploadSession: Omit<{
|
|
|
5260
5715
|
readonly relatedList?: boolean | undefined;
|
|
5261
5716
|
readonly relatedListTitle?: string | undefined;
|
|
5262
5717
|
readonly relatedListColumns?: any[] | undefined;
|
|
5718
|
+
readonly displayField?: string | undefined;
|
|
5719
|
+
readonly descriptionField?: string | undefined;
|
|
5720
|
+
readonly lookupColumns?: (string | {
|
|
5721
|
+
field: string;
|
|
5722
|
+
label?: string | undefined;
|
|
5723
|
+
width?: string | undefined;
|
|
5724
|
+
type?: string | undefined;
|
|
5725
|
+
})[] | undefined;
|
|
5726
|
+
readonly lookupPageSize?: number | undefined;
|
|
5727
|
+
readonly lookupFilters?: {
|
|
5728
|
+
field: string;
|
|
5729
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
5730
|
+
value: any;
|
|
5731
|
+
}[] | undefined;
|
|
5732
|
+
readonly dependsOn?: (string | {
|
|
5733
|
+
field: string;
|
|
5734
|
+
param?: string | undefined;
|
|
5735
|
+
})[] | undefined;
|
|
5736
|
+
readonly allowCreate?: boolean | undefined;
|
|
5263
5737
|
readonly expression?: {
|
|
5264
5738
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5265
5739
|
source?: string | undefined;
|
|
@@ -5415,6 +5889,25 @@ declare const SystemUploadSession: Omit<{
|
|
|
5415
5889
|
readonly relatedList?: boolean | undefined;
|
|
5416
5890
|
readonly relatedListTitle?: string | undefined;
|
|
5417
5891
|
readonly relatedListColumns?: any[] | undefined;
|
|
5892
|
+
readonly displayField?: string | undefined;
|
|
5893
|
+
readonly descriptionField?: string | undefined;
|
|
5894
|
+
readonly lookupColumns?: (string | {
|
|
5895
|
+
field: string;
|
|
5896
|
+
label?: string | undefined;
|
|
5897
|
+
width?: string | undefined;
|
|
5898
|
+
type?: string | undefined;
|
|
5899
|
+
})[] | undefined;
|
|
5900
|
+
readonly lookupPageSize?: number | undefined;
|
|
5901
|
+
readonly lookupFilters?: {
|
|
5902
|
+
field: string;
|
|
5903
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
5904
|
+
value: any;
|
|
5905
|
+
}[] | undefined;
|
|
5906
|
+
readonly dependsOn?: (string | {
|
|
5907
|
+
field: string;
|
|
5908
|
+
param?: string | undefined;
|
|
5909
|
+
})[] | undefined;
|
|
5910
|
+
readonly allowCreate?: boolean | undefined;
|
|
5418
5911
|
readonly expression?: {
|
|
5419
5912
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5420
5913
|
source?: string | undefined;
|
|
@@ -5570,6 +6063,25 @@ declare const SystemUploadSession: Omit<{
|
|
|
5570
6063
|
readonly relatedList?: boolean | undefined;
|
|
5571
6064
|
readonly relatedListTitle?: string | undefined;
|
|
5572
6065
|
readonly relatedListColumns?: any[] | undefined;
|
|
6066
|
+
readonly displayField?: string | undefined;
|
|
6067
|
+
readonly descriptionField?: string | undefined;
|
|
6068
|
+
readonly lookupColumns?: (string | {
|
|
6069
|
+
field: string;
|
|
6070
|
+
label?: string | undefined;
|
|
6071
|
+
width?: string | undefined;
|
|
6072
|
+
type?: string | undefined;
|
|
6073
|
+
})[] | undefined;
|
|
6074
|
+
readonly lookupPageSize?: number | undefined;
|
|
6075
|
+
readonly lookupFilters?: {
|
|
6076
|
+
field: string;
|
|
6077
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
6078
|
+
value: any;
|
|
6079
|
+
}[] | undefined;
|
|
6080
|
+
readonly dependsOn?: (string | {
|
|
6081
|
+
field: string;
|
|
6082
|
+
param?: string | undefined;
|
|
6083
|
+
})[] | undefined;
|
|
6084
|
+
readonly allowCreate?: boolean | undefined;
|
|
5573
6085
|
readonly expression?: {
|
|
5574
6086
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5575
6087
|
source?: string | undefined;
|
|
@@ -5725,6 +6237,25 @@ declare const SystemUploadSession: Omit<{
|
|
|
5725
6237
|
readonly relatedList?: boolean | undefined;
|
|
5726
6238
|
readonly relatedListTitle?: string | undefined;
|
|
5727
6239
|
readonly relatedListColumns?: any[] | undefined;
|
|
6240
|
+
readonly displayField?: string | undefined;
|
|
6241
|
+
readonly descriptionField?: string | undefined;
|
|
6242
|
+
readonly lookupColumns?: (string | {
|
|
6243
|
+
field: string;
|
|
6244
|
+
label?: string | undefined;
|
|
6245
|
+
width?: string | undefined;
|
|
6246
|
+
type?: string | undefined;
|
|
6247
|
+
})[] | undefined;
|
|
6248
|
+
readonly lookupPageSize?: number | undefined;
|
|
6249
|
+
readonly lookupFilters?: {
|
|
6250
|
+
field: string;
|
|
6251
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
6252
|
+
value: any;
|
|
6253
|
+
}[] | undefined;
|
|
6254
|
+
readonly dependsOn?: (string | {
|
|
6255
|
+
field: string;
|
|
6256
|
+
param?: string | undefined;
|
|
6257
|
+
})[] | undefined;
|
|
6258
|
+
readonly allowCreate?: boolean | undefined;
|
|
5728
6259
|
readonly expression?: {
|
|
5729
6260
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5730
6261
|
source?: string | undefined;
|
|
@@ -5880,6 +6411,25 @@ declare const SystemUploadSession: Omit<{
|
|
|
5880
6411
|
readonly relatedList?: boolean | undefined;
|
|
5881
6412
|
readonly relatedListTitle?: string | undefined;
|
|
5882
6413
|
readonly relatedListColumns?: any[] | undefined;
|
|
6414
|
+
readonly displayField?: string | undefined;
|
|
6415
|
+
readonly descriptionField?: string | undefined;
|
|
6416
|
+
readonly lookupColumns?: (string | {
|
|
6417
|
+
field: string;
|
|
6418
|
+
label?: string | undefined;
|
|
6419
|
+
width?: string | undefined;
|
|
6420
|
+
type?: string | undefined;
|
|
6421
|
+
})[] | undefined;
|
|
6422
|
+
readonly lookupPageSize?: number | undefined;
|
|
6423
|
+
readonly lookupFilters?: {
|
|
6424
|
+
field: string;
|
|
6425
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
6426
|
+
value: any;
|
|
6427
|
+
}[] | undefined;
|
|
6428
|
+
readonly dependsOn?: (string | {
|
|
6429
|
+
field: string;
|
|
6430
|
+
param?: string | undefined;
|
|
6431
|
+
})[] | undefined;
|
|
6432
|
+
readonly allowCreate?: boolean | undefined;
|
|
5883
6433
|
readonly expression?: {
|
|
5884
6434
|
dialect: "cel" | "js" | "cron" | "template";
|
|
5885
6435
|
source?: string | undefined;
|
|
@@ -6035,6 +6585,25 @@ declare const SystemUploadSession: Omit<{
|
|
|
6035
6585
|
readonly relatedList?: boolean | undefined;
|
|
6036
6586
|
readonly relatedListTitle?: string | undefined;
|
|
6037
6587
|
readonly relatedListColumns?: any[] | undefined;
|
|
6588
|
+
readonly displayField?: string | undefined;
|
|
6589
|
+
readonly descriptionField?: string | undefined;
|
|
6590
|
+
readonly lookupColumns?: (string | {
|
|
6591
|
+
field: string;
|
|
6592
|
+
label?: string | undefined;
|
|
6593
|
+
width?: string | undefined;
|
|
6594
|
+
type?: string | undefined;
|
|
6595
|
+
})[] | undefined;
|
|
6596
|
+
readonly lookupPageSize?: number | undefined;
|
|
6597
|
+
readonly lookupFilters?: {
|
|
6598
|
+
field: string;
|
|
6599
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
6600
|
+
value: any;
|
|
6601
|
+
}[] | undefined;
|
|
6602
|
+
readonly dependsOn?: (string | {
|
|
6603
|
+
field: string;
|
|
6604
|
+
param?: string | undefined;
|
|
6605
|
+
})[] | undefined;
|
|
6606
|
+
readonly allowCreate?: boolean | undefined;
|
|
6038
6607
|
readonly expression?: {
|
|
6039
6608
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6040
6609
|
source?: string | undefined;
|
|
@@ -6190,6 +6759,25 @@ declare const SystemUploadSession: Omit<{
|
|
|
6190
6759
|
readonly relatedList?: boolean | undefined;
|
|
6191
6760
|
readonly relatedListTitle?: string | undefined;
|
|
6192
6761
|
readonly relatedListColumns?: any[] | undefined;
|
|
6762
|
+
readonly displayField?: string | undefined;
|
|
6763
|
+
readonly descriptionField?: string | undefined;
|
|
6764
|
+
readonly lookupColumns?: (string | {
|
|
6765
|
+
field: string;
|
|
6766
|
+
label?: string | undefined;
|
|
6767
|
+
width?: string | undefined;
|
|
6768
|
+
type?: string | undefined;
|
|
6769
|
+
})[] | undefined;
|
|
6770
|
+
readonly lookupPageSize?: number | undefined;
|
|
6771
|
+
readonly lookupFilters?: {
|
|
6772
|
+
field: string;
|
|
6773
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
6774
|
+
value: any;
|
|
6775
|
+
}[] | undefined;
|
|
6776
|
+
readonly dependsOn?: (string | {
|
|
6777
|
+
field: string;
|
|
6778
|
+
param?: string | undefined;
|
|
6779
|
+
})[] | undefined;
|
|
6780
|
+
readonly allowCreate?: boolean | undefined;
|
|
6193
6781
|
readonly expression?: {
|
|
6194
6782
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6195
6783
|
source?: string | undefined;
|
|
@@ -6345,6 +6933,25 @@ declare const SystemUploadSession: Omit<{
|
|
|
6345
6933
|
readonly relatedList?: boolean | undefined;
|
|
6346
6934
|
readonly relatedListTitle?: string | undefined;
|
|
6347
6935
|
readonly relatedListColumns?: any[] | undefined;
|
|
6936
|
+
readonly displayField?: string | undefined;
|
|
6937
|
+
readonly descriptionField?: string | undefined;
|
|
6938
|
+
readonly lookupColumns?: (string | {
|
|
6939
|
+
field: string;
|
|
6940
|
+
label?: string | undefined;
|
|
6941
|
+
width?: string | undefined;
|
|
6942
|
+
type?: string | undefined;
|
|
6943
|
+
})[] | undefined;
|
|
6944
|
+
readonly lookupPageSize?: number | undefined;
|
|
6945
|
+
readonly lookupFilters?: {
|
|
6946
|
+
field: string;
|
|
6947
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
6948
|
+
value: any;
|
|
6949
|
+
}[] | undefined;
|
|
6950
|
+
readonly dependsOn?: (string | {
|
|
6951
|
+
field: string;
|
|
6952
|
+
param?: string | undefined;
|
|
6953
|
+
})[] | undefined;
|
|
6954
|
+
readonly allowCreate?: boolean | undefined;
|
|
6348
6955
|
readonly expression?: {
|
|
6349
6956
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6350
6957
|
source?: string | undefined;
|
|
@@ -6500,6 +7107,25 @@ declare const SystemUploadSession: Omit<{
|
|
|
6500
7107
|
readonly relatedList?: boolean | undefined;
|
|
6501
7108
|
readonly relatedListTitle?: string | undefined;
|
|
6502
7109
|
readonly relatedListColumns?: any[] | undefined;
|
|
7110
|
+
readonly displayField?: string | undefined;
|
|
7111
|
+
readonly descriptionField?: string | undefined;
|
|
7112
|
+
readonly lookupColumns?: (string | {
|
|
7113
|
+
field: string;
|
|
7114
|
+
label?: string | undefined;
|
|
7115
|
+
width?: string | undefined;
|
|
7116
|
+
type?: string | undefined;
|
|
7117
|
+
})[] | undefined;
|
|
7118
|
+
readonly lookupPageSize?: number | undefined;
|
|
7119
|
+
readonly lookupFilters?: {
|
|
7120
|
+
field: string;
|
|
7121
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7122
|
+
value: any;
|
|
7123
|
+
}[] | undefined;
|
|
7124
|
+
readonly dependsOn?: (string | {
|
|
7125
|
+
field: string;
|
|
7126
|
+
param?: string | undefined;
|
|
7127
|
+
})[] | undefined;
|
|
7128
|
+
readonly allowCreate?: boolean | undefined;
|
|
6503
7129
|
readonly expression?: {
|
|
6504
7130
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6505
7131
|
source?: string | undefined;
|
|
@@ -6655,6 +7281,25 @@ declare const SystemUploadSession: Omit<{
|
|
|
6655
7281
|
readonly relatedList?: boolean | undefined;
|
|
6656
7282
|
readonly relatedListTitle?: string | undefined;
|
|
6657
7283
|
readonly relatedListColumns?: any[] | undefined;
|
|
7284
|
+
readonly displayField?: string | undefined;
|
|
7285
|
+
readonly descriptionField?: string | undefined;
|
|
7286
|
+
readonly lookupColumns?: (string | {
|
|
7287
|
+
field: string;
|
|
7288
|
+
label?: string | undefined;
|
|
7289
|
+
width?: string | undefined;
|
|
7290
|
+
type?: string | undefined;
|
|
7291
|
+
})[] | undefined;
|
|
7292
|
+
readonly lookupPageSize?: number | undefined;
|
|
7293
|
+
readonly lookupFilters?: {
|
|
7294
|
+
field: string;
|
|
7295
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7296
|
+
value: any;
|
|
7297
|
+
}[] | undefined;
|
|
7298
|
+
readonly dependsOn?: (string | {
|
|
7299
|
+
field: string;
|
|
7300
|
+
param?: string | undefined;
|
|
7301
|
+
})[] | undefined;
|
|
7302
|
+
readonly allowCreate?: boolean | undefined;
|
|
6658
7303
|
readonly expression?: {
|
|
6659
7304
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6660
7305
|
source?: string | undefined;
|
|
@@ -6810,6 +7455,25 @@ declare const SystemUploadSession: Omit<{
|
|
|
6810
7455
|
readonly relatedList?: boolean | undefined;
|
|
6811
7456
|
readonly relatedListTitle?: string | undefined;
|
|
6812
7457
|
readonly relatedListColumns?: any[] | undefined;
|
|
7458
|
+
readonly displayField?: string | undefined;
|
|
7459
|
+
readonly descriptionField?: string | undefined;
|
|
7460
|
+
readonly lookupColumns?: (string | {
|
|
7461
|
+
field: string;
|
|
7462
|
+
label?: string | undefined;
|
|
7463
|
+
width?: string | undefined;
|
|
7464
|
+
type?: string | undefined;
|
|
7465
|
+
})[] | undefined;
|
|
7466
|
+
readonly lookupPageSize?: number | undefined;
|
|
7467
|
+
readonly lookupFilters?: {
|
|
7468
|
+
field: string;
|
|
7469
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7470
|
+
value: any;
|
|
7471
|
+
}[] | undefined;
|
|
7472
|
+
readonly dependsOn?: (string | {
|
|
7473
|
+
field: string;
|
|
7474
|
+
param?: string | undefined;
|
|
7475
|
+
})[] | undefined;
|
|
7476
|
+
readonly allowCreate?: boolean | undefined;
|
|
6813
7477
|
readonly expression?: {
|
|
6814
7478
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6815
7479
|
source?: string | undefined;
|
|
@@ -6965,6 +7629,25 @@ declare const SystemUploadSession: Omit<{
|
|
|
6965
7629
|
readonly relatedList?: boolean | undefined;
|
|
6966
7630
|
readonly relatedListTitle?: string | undefined;
|
|
6967
7631
|
readonly relatedListColumns?: any[] | undefined;
|
|
7632
|
+
readonly displayField?: string | undefined;
|
|
7633
|
+
readonly descriptionField?: string | undefined;
|
|
7634
|
+
readonly lookupColumns?: (string | {
|
|
7635
|
+
field: string;
|
|
7636
|
+
label?: string | undefined;
|
|
7637
|
+
width?: string | undefined;
|
|
7638
|
+
type?: string | undefined;
|
|
7639
|
+
})[] | undefined;
|
|
7640
|
+
readonly lookupPageSize?: number | undefined;
|
|
7641
|
+
readonly lookupFilters?: {
|
|
7642
|
+
field: string;
|
|
7643
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7644
|
+
value: any;
|
|
7645
|
+
}[] | undefined;
|
|
7646
|
+
readonly dependsOn?: (string | {
|
|
7647
|
+
field: string;
|
|
7648
|
+
param?: string | undefined;
|
|
7649
|
+
})[] | undefined;
|
|
7650
|
+
readonly allowCreate?: boolean | undefined;
|
|
6968
7651
|
readonly expression?: {
|
|
6969
7652
|
dialect: "cel" | "js" | "cron" | "template";
|
|
6970
7653
|
source?: string | undefined;
|
|
@@ -7120,6 +7803,25 @@ declare const SystemUploadSession: Omit<{
|
|
|
7120
7803
|
readonly relatedList?: boolean | undefined;
|
|
7121
7804
|
readonly relatedListTitle?: string | undefined;
|
|
7122
7805
|
readonly relatedListColumns?: any[] | undefined;
|
|
7806
|
+
readonly displayField?: string | undefined;
|
|
7807
|
+
readonly descriptionField?: string | undefined;
|
|
7808
|
+
readonly lookupColumns?: (string | {
|
|
7809
|
+
field: string;
|
|
7810
|
+
label?: string | undefined;
|
|
7811
|
+
width?: string | undefined;
|
|
7812
|
+
type?: string | undefined;
|
|
7813
|
+
})[] | undefined;
|
|
7814
|
+
readonly lookupPageSize?: number | undefined;
|
|
7815
|
+
readonly lookupFilters?: {
|
|
7816
|
+
field: string;
|
|
7817
|
+
operator: "in" | "eq" | "ne" | "gt" | "lt" | "gte" | "lte" | "contains" | "notIn";
|
|
7818
|
+
value: any;
|
|
7819
|
+
}[] | undefined;
|
|
7820
|
+
readonly dependsOn?: (string | {
|
|
7821
|
+
field: string;
|
|
7822
|
+
param?: string | undefined;
|
|
7823
|
+
})[] | undefined;
|
|
7824
|
+
readonly allowCreate?: boolean | undefined;
|
|
7123
7825
|
readonly expression?: {
|
|
7124
7826
|
dialect: "cel" | "js" | "cron" | "template";
|
|
7125
7827
|
source?: string | undefined;
|