@objectstack/service-messaging 11.10.0 → 12.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 +783 -993
- package/dist/index.d.ts +783 -993
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -1486,7 +1486,7 @@ declare const InboxMessage: Omit<{
|
|
|
1486
1486
|
inlineTitle?: string | undefined;
|
|
1487
1487
|
inlineColumns?: any[] | undefined;
|
|
1488
1488
|
inlineAmountField?: string | undefined;
|
|
1489
|
-
relatedList?: boolean | undefined;
|
|
1489
|
+
relatedList?: boolean | "primary" | undefined;
|
|
1490
1490
|
relatedListTitle?: string | undefined;
|
|
1491
1491
|
relatedListColumns?: any[] | undefined;
|
|
1492
1492
|
displayField?: string | undefined;
|
|
@@ -1769,7 +1769,7 @@ declare const InboxMessage: Omit<{
|
|
|
1769
1769
|
highlightFields?: string[] | undefined;
|
|
1770
1770
|
stageField?: string | false | undefined;
|
|
1771
1771
|
listViews?: Record<string, {
|
|
1772
|
-
type: "map" | "tree" | "grid" | "kanban" | "
|
|
1772
|
+
type: "map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart";
|
|
1773
1773
|
columns: string[] | {
|
|
1774
1774
|
field: string;
|
|
1775
1775
|
label?: string | undefined;
|
|
@@ -1785,8 +1785,55 @@ declare const InboxMessage: Omit<{
|
|
|
1785
1785
|
link?: boolean | undefined;
|
|
1786
1786
|
action?: string | undefined;
|
|
1787
1787
|
}[];
|
|
1788
|
-
|
|
1788
|
+
sort?: string | {
|
|
1789
|
+
field: string;
|
|
1790
|
+
order: "asc" | "desc";
|
|
1791
|
+
}[] | undefined;
|
|
1792
|
+
filter?: {
|
|
1793
|
+
field: string;
|
|
1794
|
+
operator: string;
|
|
1795
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
1796
|
+
}[] | undefined;
|
|
1797
|
+
description?: string | undefined;
|
|
1789
1798
|
label?: string | undefined;
|
|
1799
|
+
name?: string | undefined;
|
|
1800
|
+
responsive?: {
|
|
1801
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
1802
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
1803
|
+
columns?: {
|
|
1804
|
+
xs?: number | undefined;
|
|
1805
|
+
sm?: number | undefined;
|
|
1806
|
+
md?: number | undefined;
|
|
1807
|
+
lg?: number | undefined;
|
|
1808
|
+
xl?: number | undefined;
|
|
1809
|
+
'2xl'?: number | undefined;
|
|
1810
|
+
} | undefined;
|
|
1811
|
+
order?: {
|
|
1812
|
+
xs?: number | undefined;
|
|
1813
|
+
sm?: number | undefined;
|
|
1814
|
+
md?: number | undefined;
|
|
1815
|
+
lg?: number | undefined;
|
|
1816
|
+
xl?: number | undefined;
|
|
1817
|
+
'2xl'?: number | undefined;
|
|
1818
|
+
} | undefined;
|
|
1819
|
+
} | undefined;
|
|
1820
|
+
navigation?: {
|
|
1821
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
1822
|
+
preventNavigation: boolean;
|
|
1823
|
+
openNewTab: boolean;
|
|
1824
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
1825
|
+
view?: string | undefined;
|
|
1826
|
+
width?: string | number | undefined;
|
|
1827
|
+
} | undefined;
|
|
1828
|
+
sharing?: {
|
|
1829
|
+
type: "personal" | "collaborative";
|
|
1830
|
+
lockedBy?: string | undefined;
|
|
1831
|
+
} | undefined;
|
|
1832
|
+
aria?: {
|
|
1833
|
+
ariaLabel?: string | undefined;
|
|
1834
|
+
ariaDescribedBy?: string | undefined;
|
|
1835
|
+
role?: string | undefined;
|
|
1836
|
+
} | undefined;
|
|
1790
1837
|
data?: {
|
|
1791
1838
|
provider: "object";
|
|
1792
1839
|
object: string;
|
|
@@ -1814,77 +1861,42 @@ declare const InboxMessage: Omit<{
|
|
|
1814
1861
|
schemaId: string;
|
|
1815
1862
|
schema?: Record<string, unknown> | undefined;
|
|
1816
1863
|
} | undefined;
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
field: string;
|
|
1824
|
-
order: "asc" | "desc";
|
|
1825
|
-
}[] | undefined;
|
|
1826
|
-
searchableFields?: string[] | undefined;
|
|
1827
|
-
filterableFields?: string[] | undefined;
|
|
1828
|
-
userFilters?: {
|
|
1829
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
1830
|
-
fields?: {
|
|
1831
|
-
field: string;
|
|
1832
|
-
label?: string | undefined;
|
|
1833
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
1834
|
-
options?: {
|
|
1835
|
-
value: string | number | boolean;
|
|
1836
|
-
label: string;
|
|
1837
|
-
color?: string | undefined;
|
|
1838
|
-
}[] | undefined;
|
|
1839
|
-
showCount?: boolean | undefined;
|
|
1840
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
1841
|
-
}[] | undefined;
|
|
1842
|
-
tabs?: {
|
|
1843
|
-
name: string;
|
|
1844
|
-
pinned: boolean;
|
|
1845
|
-
isDefault: boolean;
|
|
1846
|
-
visible: boolean;
|
|
1847
|
-
label?: string | undefined;
|
|
1848
|
-
icon?: string | undefined;
|
|
1849
|
-
view?: string | undefined;
|
|
1850
|
-
filter?: {
|
|
1851
|
-
field: string;
|
|
1852
|
-
operator: string;
|
|
1853
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
1854
|
-
}[] | undefined;
|
|
1855
|
-
order?: number | undefined;
|
|
1856
|
-
}[] | undefined;
|
|
1857
|
-
showAllRecords?: boolean | undefined;
|
|
1864
|
+
tree?: {
|
|
1865
|
+
[x: string]: unknown;
|
|
1866
|
+
parentField?: string | undefined;
|
|
1867
|
+
labelField?: string | undefined;
|
|
1868
|
+
fields?: string[] | undefined;
|
|
1869
|
+
defaultExpandedDepth?: number | undefined;
|
|
1858
1870
|
} | undefined;
|
|
1871
|
+
inlineEdit?: boolean | undefined;
|
|
1872
|
+
virtualScroll?: boolean | undefined;
|
|
1859
1873
|
resizable?: boolean | undefined;
|
|
1860
|
-
striped?: boolean | undefined;
|
|
1861
|
-
bordered?: boolean | undefined;
|
|
1862
|
-
compactToolbar?: boolean | undefined;
|
|
1863
|
-
selection?: {
|
|
1864
|
-
type: "none" | "multiple" | "single";
|
|
1865
|
-
} | undefined;
|
|
1866
|
-
navigation?: {
|
|
1867
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
1868
|
-
preventNavigation: boolean;
|
|
1869
|
-
openNewTab: boolean;
|
|
1870
|
-
view?: string | undefined;
|
|
1871
|
-
width?: string | number | undefined;
|
|
1872
|
-
} | undefined;
|
|
1873
|
-
pagination?: {
|
|
1874
|
-
pageSize: number;
|
|
1875
|
-
pageSizeOptions?: number[] | undefined;
|
|
1876
|
-
} | undefined;
|
|
1877
1874
|
kanban?: {
|
|
1878
1875
|
groupByField: string;
|
|
1879
1876
|
columns: string[];
|
|
1880
1877
|
summarizeField?: string | undefined;
|
|
1881
1878
|
} | undefined;
|
|
1879
|
+
gallery?: {
|
|
1880
|
+
coverFit: "cover" | "contain";
|
|
1881
|
+
cardSize: "small" | "medium" | "large";
|
|
1882
|
+
coverField?: string | undefined;
|
|
1883
|
+
titleField?: string | undefined;
|
|
1884
|
+
visibleFields?: string[] | undefined;
|
|
1885
|
+
} | undefined;
|
|
1882
1886
|
calendar?: {
|
|
1883
1887
|
startDateField: string;
|
|
1884
1888
|
titleField: string;
|
|
1885
1889
|
endDateField?: string | undefined;
|
|
1886
1890
|
colorField?: string | undefined;
|
|
1887
1891
|
} | undefined;
|
|
1892
|
+
timeline?: {
|
|
1893
|
+
startDateField: string;
|
|
1894
|
+
titleField: string;
|
|
1895
|
+
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
1896
|
+
endDateField?: string | undefined;
|
|
1897
|
+
groupByField?: string | undefined;
|
|
1898
|
+
colorField?: string | undefined;
|
|
1899
|
+
} | undefined;
|
|
1888
1900
|
gantt?: {
|
|
1889
1901
|
[x: string]: unknown;
|
|
1890
1902
|
startDateField: string;
|
|
@@ -1916,40 +1928,40 @@ declare const InboxMessage: Omit<{
|
|
|
1916
1928
|
}[] | undefined;
|
|
1917
1929
|
autoZoomToFilter?: boolean | undefined;
|
|
1918
1930
|
} | undefined;
|
|
1919
|
-
gallery?: {
|
|
1920
|
-
coverFit: "cover" | "contain";
|
|
1921
|
-
cardSize: "small" | "medium" | "large";
|
|
1922
|
-
coverField?: string | undefined;
|
|
1923
|
-
titleField?: string | undefined;
|
|
1924
|
-
visibleFields?: string[] | undefined;
|
|
1925
|
-
} | undefined;
|
|
1926
|
-
timeline?: {
|
|
1927
|
-
startDateField: string;
|
|
1928
|
-
titleField: string;
|
|
1929
|
-
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
1930
|
-
endDateField?: string | undefined;
|
|
1931
|
-
groupByField?: string | undefined;
|
|
1932
|
-
colorField?: string | undefined;
|
|
1933
|
-
} | undefined;
|
|
1934
1931
|
chart?: {
|
|
1935
1932
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
1936
1933
|
dataset: string;
|
|
1937
1934
|
values: string[];
|
|
1938
1935
|
dimensions?: string[] | undefined;
|
|
1939
1936
|
} | undefined;
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1937
|
+
rowHeight?: "short" | "medium" | "compact" | "tall" | "extra_tall" | undefined;
|
|
1938
|
+
tabs?: {
|
|
1939
|
+
name: string;
|
|
1940
|
+
pinned: boolean;
|
|
1941
|
+
isDefault: boolean;
|
|
1942
|
+
visible: boolean;
|
|
1943
|
+
label?: string | undefined;
|
|
1944
|
+
icon?: string | undefined;
|
|
1945
|
+
view?: string | undefined;
|
|
1946
|
+
filter?: {
|
|
1947
|
+
field: string;
|
|
1948
|
+
operator: string;
|
|
1949
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
1950
|
+
}[] | undefined;
|
|
1951
|
+
order?: number | undefined;
|
|
1952
|
+
}[] | undefined;
|
|
1953
|
+
searchableFields?: string[] | undefined;
|
|
1954
|
+
filterableFields?: string[] | undefined;
|
|
1955
|
+
striped?: boolean | undefined;
|
|
1956
|
+
bordered?: boolean | undefined;
|
|
1957
|
+
compactToolbar?: boolean | undefined;
|
|
1958
|
+
selection?: {
|
|
1959
|
+
type: "none" | "multiple" | "single";
|
|
1946
1960
|
} | undefined;
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
lockedBy?: string | undefined;
|
|
1961
|
+
pagination?: {
|
|
1962
|
+
pageSize: number;
|
|
1963
|
+
pageSizeOptions?: number[] | undefined;
|
|
1951
1964
|
} | undefined;
|
|
1952
|
-
rowHeight?: "short" | "medium" | "compact" | "tall" | "extra_tall" | undefined;
|
|
1953
1965
|
grouping?: {
|
|
1954
1966
|
fields: {
|
|
1955
1967
|
field: string;
|
|
@@ -1966,7 +1978,6 @@ declare const InboxMessage: Omit<{
|
|
|
1966
1978
|
rowActions?: string[] | undefined;
|
|
1967
1979
|
bulkActions?: string[] | undefined;
|
|
1968
1980
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
1969
|
-
virtualScroll?: boolean | undefined;
|
|
1970
1981
|
conditionalFormatting?: {
|
|
1971
1982
|
condition: {
|
|
1972
1983
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -1987,7 +1998,6 @@ declare const InboxMessage: Omit<{
|
|
|
1987
1998
|
};
|
|
1988
1999
|
style: Record<string, string>;
|
|
1989
2000
|
}[] | undefined;
|
|
1990
|
-
inlineEdit?: boolean | undefined;
|
|
1991
2001
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
1992
2002
|
userActions?: {
|
|
1993
2003
|
sort: boolean;
|
|
@@ -2000,23 +2010,8 @@ declare const InboxMessage: Omit<{
|
|
|
2000
2010
|
} | undefined;
|
|
2001
2011
|
appearance?: {
|
|
2002
2012
|
showDescription: boolean;
|
|
2003
|
-
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "
|
|
2013
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
2004
2014
|
} | undefined;
|
|
2005
|
-
tabs?: {
|
|
2006
|
-
name: string;
|
|
2007
|
-
pinned: boolean;
|
|
2008
|
-
isDefault: boolean;
|
|
2009
|
-
visible: boolean;
|
|
2010
|
-
label?: string | undefined;
|
|
2011
|
-
icon?: string | undefined;
|
|
2012
|
-
view?: string | undefined;
|
|
2013
|
-
filter?: {
|
|
2014
|
-
field: string;
|
|
2015
|
-
operator: string;
|
|
2016
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
2017
|
-
}[] | undefined;
|
|
2018
|
-
order?: number | undefined;
|
|
2019
|
-
}[] | undefined;
|
|
2020
2015
|
addRecord?: {
|
|
2021
2016
|
enabled: boolean;
|
|
2022
2017
|
position: "top" | "bottom" | "both";
|
|
@@ -2030,31 +2025,6 @@ declare const InboxMessage: Omit<{
|
|
|
2030
2025
|
message?: string | undefined;
|
|
2031
2026
|
icon?: string | undefined;
|
|
2032
2027
|
} | undefined;
|
|
2033
|
-
aria?: {
|
|
2034
|
-
ariaLabel?: string | undefined;
|
|
2035
|
-
ariaDescribedBy?: string | undefined;
|
|
2036
|
-
role?: string | undefined;
|
|
2037
|
-
} | undefined;
|
|
2038
|
-
responsive?: {
|
|
2039
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
2040
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
2041
|
-
columns?: {
|
|
2042
|
-
xs?: number | undefined;
|
|
2043
|
-
sm?: number | undefined;
|
|
2044
|
-
md?: number | undefined;
|
|
2045
|
-
lg?: number | undefined;
|
|
2046
|
-
xl?: number | undefined;
|
|
2047
|
-
'2xl'?: number | undefined;
|
|
2048
|
-
} | undefined;
|
|
2049
|
-
order?: {
|
|
2050
|
-
xs?: number | undefined;
|
|
2051
|
-
sm?: number | undefined;
|
|
2052
|
-
md?: number | undefined;
|
|
2053
|
-
lg?: number | undefined;
|
|
2054
|
-
xl?: number | undefined;
|
|
2055
|
-
'2xl'?: number | undefined;
|
|
2056
|
-
} | undefined;
|
|
2057
|
-
} | undefined;
|
|
2058
2028
|
performance?: {
|
|
2059
2029
|
lazyLoad?: boolean | undefined;
|
|
2060
2030
|
virtualScroll?: {
|
|
@@ -2282,7 +2252,7 @@ declare const InboxMessage: Omit<{
|
|
|
2282
2252
|
readonly inlineTitle?: string | undefined;
|
|
2283
2253
|
readonly inlineColumns?: any[] | undefined;
|
|
2284
2254
|
readonly inlineAmountField?: string | undefined;
|
|
2285
|
-
readonly relatedList?: boolean | undefined;
|
|
2255
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2286
2256
|
readonly relatedListTitle?: string | undefined;
|
|
2287
2257
|
readonly relatedListColumns?: any[] | undefined;
|
|
2288
2258
|
readonly displayField?: string | undefined;
|
|
@@ -2456,7 +2426,7 @@ declare const InboxMessage: Omit<{
|
|
|
2456
2426
|
readonly inlineTitle?: string | undefined;
|
|
2457
2427
|
readonly inlineColumns?: any[] | undefined;
|
|
2458
2428
|
readonly inlineAmountField?: string | undefined;
|
|
2459
|
-
readonly relatedList?: boolean | undefined;
|
|
2429
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2460
2430
|
readonly relatedListTitle?: string | undefined;
|
|
2461
2431
|
readonly relatedListColumns?: any[] | undefined;
|
|
2462
2432
|
readonly displayField?: string | undefined;
|
|
@@ -2630,7 +2600,7 @@ declare const InboxMessage: Omit<{
|
|
|
2630
2600
|
readonly inlineTitle?: string | undefined;
|
|
2631
2601
|
readonly inlineColumns?: any[] | undefined;
|
|
2632
2602
|
readonly inlineAmountField?: string | undefined;
|
|
2633
|
-
readonly relatedList?: boolean | undefined;
|
|
2603
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2634
2604
|
readonly relatedListTitle?: string | undefined;
|
|
2635
2605
|
readonly relatedListColumns?: any[] | undefined;
|
|
2636
2606
|
readonly displayField?: string | undefined;
|
|
@@ -2804,7 +2774,7 @@ declare const InboxMessage: Omit<{
|
|
|
2804
2774
|
readonly inlineTitle?: string | undefined;
|
|
2805
2775
|
readonly inlineColumns?: any[] | undefined;
|
|
2806
2776
|
readonly inlineAmountField?: string | undefined;
|
|
2807
|
-
readonly relatedList?: boolean | undefined;
|
|
2777
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2808
2778
|
readonly relatedListTitle?: string | undefined;
|
|
2809
2779
|
readonly relatedListColumns?: any[] | undefined;
|
|
2810
2780
|
readonly displayField?: string | undefined;
|
|
@@ -2978,7 +2948,7 @@ declare const InboxMessage: Omit<{
|
|
|
2978
2948
|
readonly inlineTitle?: string | undefined;
|
|
2979
2949
|
readonly inlineColumns?: any[] | undefined;
|
|
2980
2950
|
readonly inlineAmountField?: string | undefined;
|
|
2981
|
-
readonly relatedList?: boolean | undefined;
|
|
2951
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2982
2952
|
readonly relatedListTitle?: string | undefined;
|
|
2983
2953
|
readonly relatedListColumns?: any[] | undefined;
|
|
2984
2954
|
readonly displayField?: string | undefined;
|
|
@@ -3152,7 +3122,7 @@ declare const InboxMessage: Omit<{
|
|
|
3152
3122
|
readonly inlineTitle?: string | undefined;
|
|
3153
3123
|
readonly inlineColumns?: any[] | undefined;
|
|
3154
3124
|
readonly inlineAmountField?: string | undefined;
|
|
3155
|
-
readonly relatedList?: boolean | undefined;
|
|
3125
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3156
3126
|
readonly relatedListTitle?: string | undefined;
|
|
3157
3127
|
readonly relatedListColumns?: any[] | undefined;
|
|
3158
3128
|
readonly displayField?: string | undefined;
|
|
@@ -3326,7 +3296,7 @@ declare const InboxMessage: Omit<{
|
|
|
3326
3296
|
readonly inlineTitle?: string | undefined;
|
|
3327
3297
|
readonly inlineColumns?: any[] | undefined;
|
|
3328
3298
|
readonly inlineAmountField?: string | undefined;
|
|
3329
|
-
readonly relatedList?: boolean | undefined;
|
|
3299
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3330
3300
|
readonly relatedListTitle?: string | undefined;
|
|
3331
3301
|
readonly relatedListColumns?: any[] | undefined;
|
|
3332
3302
|
readonly displayField?: string | undefined;
|
|
@@ -3500,7 +3470,7 @@ declare const InboxMessage: Omit<{
|
|
|
3500
3470
|
readonly inlineTitle?: string | undefined;
|
|
3501
3471
|
readonly inlineColumns?: any[] | undefined;
|
|
3502
3472
|
readonly inlineAmountField?: string | undefined;
|
|
3503
|
-
readonly relatedList?: boolean | undefined;
|
|
3473
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3504
3474
|
readonly relatedListTitle?: string | undefined;
|
|
3505
3475
|
readonly relatedListColumns?: any[] | undefined;
|
|
3506
3476
|
readonly displayField?: string | undefined;
|
|
@@ -3674,7 +3644,7 @@ declare const InboxMessage: Omit<{
|
|
|
3674
3644
|
readonly inlineTitle?: string | undefined;
|
|
3675
3645
|
readonly inlineColumns?: any[] | undefined;
|
|
3676
3646
|
readonly inlineAmountField?: string | undefined;
|
|
3677
|
-
readonly relatedList?: boolean | undefined;
|
|
3647
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3678
3648
|
readonly relatedListTitle?: string | undefined;
|
|
3679
3649
|
readonly relatedListColumns?: any[] | undefined;
|
|
3680
3650
|
readonly displayField?: string | undefined;
|
|
@@ -3848,7 +3818,7 @@ declare const InboxMessage: Omit<{
|
|
|
3848
3818
|
readonly inlineTitle?: string | undefined;
|
|
3849
3819
|
readonly inlineColumns?: any[] | undefined;
|
|
3850
3820
|
readonly inlineAmountField?: string | undefined;
|
|
3851
|
-
readonly relatedList?: boolean | undefined;
|
|
3821
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3852
3822
|
readonly relatedListTitle?: string | undefined;
|
|
3853
3823
|
readonly relatedListColumns?: any[] | undefined;
|
|
3854
3824
|
readonly displayField?: string | undefined;
|
|
@@ -4045,7 +4015,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4045
4015
|
inlineTitle?: string | undefined;
|
|
4046
4016
|
inlineColumns?: any[] | undefined;
|
|
4047
4017
|
inlineAmountField?: string | undefined;
|
|
4048
|
-
relatedList?: boolean | undefined;
|
|
4018
|
+
relatedList?: boolean | "primary" | undefined;
|
|
4049
4019
|
relatedListTitle?: string | undefined;
|
|
4050
4020
|
relatedListColumns?: any[] | undefined;
|
|
4051
4021
|
displayField?: string | undefined;
|
|
@@ -4328,7 +4298,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4328
4298
|
highlightFields?: string[] | undefined;
|
|
4329
4299
|
stageField?: string | false | undefined;
|
|
4330
4300
|
listViews?: Record<string, {
|
|
4331
|
-
type: "map" | "tree" | "grid" | "kanban" | "
|
|
4301
|
+
type: "map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart";
|
|
4332
4302
|
columns: string[] | {
|
|
4333
4303
|
field: string;
|
|
4334
4304
|
label?: string | undefined;
|
|
@@ -4344,8 +4314,55 @@ declare const NotificationReceipt: Omit<{
|
|
|
4344
4314
|
link?: boolean | undefined;
|
|
4345
4315
|
action?: string | undefined;
|
|
4346
4316
|
}[];
|
|
4347
|
-
|
|
4317
|
+
sort?: string | {
|
|
4318
|
+
field: string;
|
|
4319
|
+
order: "asc" | "desc";
|
|
4320
|
+
}[] | undefined;
|
|
4321
|
+
filter?: {
|
|
4322
|
+
field: string;
|
|
4323
|
+
operator: string;
|
|
4324
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
4325
|
+
}[] | undefined;
|
|
4326
|
+
description?: string | undefined;
|
|
4348
4327
|
label?: string | undefined;
|
|
4328
|
+
name?: string | undefined;
|
|
4329
|
+
responsive?: {
|
|
4330
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
4331
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
4332
|
+
columns?: {
|
|
4333
|
+
xs?: number | undefined;
|
|
4334
|
+
sm?: number | undefined;
|
|
4335
|
+
md?: number | undefined;
|
|
4336
|
+
lg?: number | undefined;
|
|
4337
|
+
xl?: number | undefined;
|
|
4338
|
+
'2xl'?: number | undefined;
|
|
4339
|
+
} | undefined;
|
|
4340
|
+
order?: {
|
|
4341
|
+
xs?: number | undefined;
|
|
4342
|
+
sm?: number | undefined;
|
|
4343
|
+
md?: number | undefined;
|
|
4344
|
+
lg?: number | undefined;
|
|
4345
|
+
xl?: number | undefined;
|
|
4346
|
+
'2xl'?: number | undefined;
|
|
4347
|
+
} | undefined;
|
|
4348
|
+
} | undefined;
|
|
4349
|
+
navigation?: {
|
|
4350
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
4351
|
+
preventNavigation: boolean;
|
|
4352
|
+
openNewTab: boolean;
|
|
4353
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
4354
|
+
view?: string | undefined;
|
|
4355
|
+
width?: string | number | undefined;
|
|
4356
|
+
} | undefined;
|
|
4357
|
+
sharing?: {
|
|
4358
|
+
type: "personal" | "collaborative";
|
|
4359
|
+
lockedBy?: string | undefined;
|
|
4360
|
+
} | undefined;
|
|
4361
|
+
aria?: {
|
|
4362
|
+
ariaLabel?: string | undefined;
|
|
4363
|
+
ariaDescribedBy?: string | undefined;
|
|
4364
|
+
role?: string | undefined;
|
|
4365
|
+
} | undefined;
|
|
4349
4366
|
data?: {
|
|
4350
4367
|
provider: "object";
|
|
4351
4368
|
object: string;
|
|
@@ -4373,77 +4390,42 @@ declare const NotificationReceipt: Omit<{
|
|
|
4373
4390
|
schemaId: string;
|
|
4374
4391
|
schema?: Record<string, unknown> | undefined;
|
|
4375
4392
|
} | undefined;
|
|
4376
|
-
|
|
4377
|
-
|
|
4378
|
-
|
|
4379
|
-
|
|
4380
|
-
|
|
4381
|
-
|
|
4382
|
-
field: string;
|
|
4383
|
-
order: "asc" | "desc";
|
|
4384
|
-
}[] | undefined;
|
|
4385
|
-
searchableFields?: string[] | undefined;
|
|
4386
|
-
filterableFields?: string[] | undefined;
|
|
4387
|
-
userFilters?: {
|
|
4388
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
4389
|
-
fields?: {
|
|
4390
|
-
field: string;
|
|
4391
|
-
label?: string | undefined;
|
|
4392
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
4393
|
-
options?: {
|
|
4394
|
-
value: string | number | boolean;
|
|
4395
|
-
label: string;
|
|
4396
|
-
color?: string | undefined;
|
|
4397
|
-
}[] | undefined;
|
|
4398
|
-
showCount?: boolean | undefined;
|
|
4399
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
4400
|
-
}[] | undefined;
|
|
4401
|
-
tabs?: {
|
|
4402
|
-
name: string;
|
|
4403
|
-
pinned: boolean;
|
|
4404
|
-
isDefault: boolean;
|
|
4405
|
-
visible: boolean;
|
|
4406
|
-
label?: string | undefined;
|
|
4407
|
-
icon?: string | undefined;
|
|
4408
|
-
view?: string | undefined;
|
|
4409
|
-
filter?: {
|
|
4410
|
-
field: string;
|
|
4411
|
-
operator: string;
|
|
4412
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
4413
|
-
}[] | undefined;
|
|
4414
|
-
order?: number | undefined;
|
|
4415
|
-
}[] | undefined;
|
|
4416
|
-
showAllRecords?: boolean | undefined;
|
|
4393
|
+
tree?: {
|
|
4394
|
+
[x: string]: unknown;
|
|
4395
|
+
parentField?: string | undefined;
|
|
4396
|
+
labelField?: string | undefined;
|
|
4397
|
+
fields?: string[] | undefined;
|
|
4398
|
+
defaultExpandedDepth?: number | undefined;
|
|
4417
4399
|
} | undefined;
|
|
4400
|
+
inlineEdit?: boolean | undefined;
|
|
4401
|
+
virtualScroll?: boolean | undefined;
|
|
4418
4402
|
resizable?: boolean | undefined;
|
|
4419
|
-
striped?: boolean | undefined;
|
|
4420
|
-
bordered?: boolean | undefined;
|
|
4421
|
-
compactToolbar?: boolean | undefined;
|
|
4422
|
-
selection?: {
|
|
4423
|
-
type: "none" | "multiple" | "single";
|
|
4424
|
-
} | undefined;
|
|
4425
|
-
navigation?: {
|
|
4426
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
4427
|
-
preventNavigation: boolean;
|
|
4428
|
-
openNewTab: boolean;
|
|
4429
|
-
view?: string | undefined;
|
|
4430
|
-
width?: string | number | undefined;
|
|
4431
|
-
} | undefined;
|
|
4432
|
-
pagination?: {
|
|
4433
|
-
pageSize: number;
|
|
4434
|
-
pageSizeOptions?: number[] | undefined;
|
|
4435
|
-
} | undefined;
|
|
4436
4403
|
kanban?: {
|
|
4437
4404
|
groupByField: string;
|
|
4438
4405
|
columns: string[];
|
|
4439
4406
|
summarizeField?: string | undefined;
|
|
4440
4407
|
} | undefined;
|
|
4408
|
+
gallery?: {
|
|
4409
|
+
coverFit: "cover" | "contain";
|
|
4410
|
+
cardSize: "small" | "medium" | "large";
|
|
4411
|
+
coverField?: string | undefined;
|
|
4412
|
+
titleField?: string | undefined;
|
|
4413
|
+
visibleFields?: string[] | undefined;
|
|
4414
|
+
} | undefined;
|
|
4441
4415
|
calendar?: {
|
|
4442
4416
|
startDateField: string;
|
|
4443
4417
|
titleField: string;
|
|
4444
4418
|
endDateField?: string | undefined;
|
|
4445
4419
|
colorField?: string | undefined;
|
|
4446
4420
|
} | undefined;
|
|
4421
|
+
timeline?: {
|
|
4422
|
+
startDateField: string;
|
|
4423
|
+
titleField: string;
|
|
4424
|
+
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
4425
|
+
endDateField?: string | undefined;
|
|
4426
|
+
groupByField?: string | undefined;
|
|
4427
|
+
colorField?: string | undefined;
|
|
4428
|
+
} | undefined;
|
|
4447
4429
|
gantt?: {
|
|
4448
4430
|
[x: string]: unknown;
|
|
4449
4431
|
startDateField: string;
|
|
@@ -4475,40 +4457,40 @@ declare const NotificationReceipt: Omit<{
|
|
|
4475
4457
|
}[] | undefined;
|
|
4476
4458
|
autoZoomToFilter?: boolean | undefined;
|
|
4477
4459
|
} | undefined;
|
|
4478
|
-
gallery?: {
|
|
4479
|
-
coverFit: "cover" | "contain";
|
|
4480
|
-
cardSize: "small" | "medium" | "large";
|
|
4481
|
-
coverField?: string | undefined;
|
|
4482
|
-
titleField?: string | undefined;
|
|
4483
|
-
visibleFields?: string[] | undefined;
|
|
4484
|
-
} | undefined;
|
|
4485
|
-
timeline?: {
|
|
4486
|
-
startDateField: string;
|
|
4487
|
-
titleField: string;
|
|
4488
|
-
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
4489
|
-
endDateField?: string | undefined;
|
|
4490
|
-
groupByField?: string | undefined;
|
|
4491
|
-
colorField?: string | undefined;
|
|
4492
|
-
} | undefined;
|
|
4493
4460
|
chart?: {
|
|
4494
4461
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
4495
4462
|
dataset: string;
|
|
4496
4463
|
values: string[];
|
|
4497
4464
|
dimensions?: string[] | undefined;
|
|
4498
4465
|
} | undefined;
|
|
4499
|
-
|
|
4500
|
-
|
|
4501
|
-
|
|
4502
|
-
|
|
4503
|
-
|
|
4504
|
-
|
|
4466
|
+
rowHeight?: "short" | "medium" | "compact" | "tall" | "extra_tall" | undefined;
|
|
4467
|
+
tabs?: {
|
|
4468
|
+
name: string;
|
|
4469
|
+
pinned: boolean;
|
|
4470
|
+
isDefault: boolean;
|
|
4471
|
+
visible: boolean;
|
|
4472
|
+
label?: string | undefined;
|
|
4473
|
+
icon?: string | undefined;
|
|
4474
|
+
view?: string | undefined;
|
|
4475
|
+
filter?: {
|
|
4476
|
+
field: string;
|
|
4477
|
+
operator: string;
|
|
4478
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
4479
|
+
}[] | undefined;
|
|
4480
|
+
order?: number | undefined;
|
|
4481
|
+
}[] | undefined;
|
|
4482
|
+
searchableFields?: string[] | undefined;
|
|
4483
|
+
filterableFields?: string[] | undefined;
|
|
4484
|
+
striped?: boolean | undefined;
|
|
4485
|
+
bordered?: boolean | undefined;
|
|
4486
|
+
compactToolbar?: boolean | undefined;
|
|
4487
|
+
selection?: {
|
|
4488
|
+
type: "none" | "multiple" | "single";
|
|
4505
4489
|
} | undefined;
|
|
4506
|
-
|
|
4507
|
-
|
|
4508
|
-
|
|
4509
|
-
lockedBy?: string | undefined;
|
|
4490
|
+
pagination?: {
|
|
4491
|
+
pageSize: number;
|
|
4492
|
+
pageSizeOptions?: number[] | undefined;
|
|
4510
4493
|
} | undefined;
|
|
4511
|
-
rowHeight?: "short" | "medium" | "compact" | "tall" | "extra_tall" | undefined;
|
|
4512
4494
|
grouping?: {
|
|
4513
4495
|
fields: {
|
|
4514
4496
|
field: string;
|
|
@@ -4525,7 +4507,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
4525
4507
|
rowActions?: string[] | undefined;
|
|
4526
4508
|
bulkActions?: string[] | undefined;
|
|
4527
4509
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
4528
|
-
virtualScroll?: boolean | undefined;
|
|
4529
4510
|
conditionalFormatting?: {
|
|
4530
4511
|
condition: {
|
|
4531
4512
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -4546,7 +4527,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
4546
4527
|
};
|
|
4547
4528
|
style: Record<string, string>;
|
|
4548
4529
|
}[] | undefined;
|
|
4549
|
-
inlineEdit?: boolean | undefined;
|
|
4550
4530
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
4551
4531
|
userActions?: {
|
|
4552
4532
|
sort: boolean;
|
|
@@ -4559,23 +4539,8 @@ declare const NotificationReceipt: Omit<{
|
|
|
4559
4539
|
} | undefined;
|
|
4560
4540
|
appearance?: {
|
|
4561
4541
|
showDescription: boolean;
|
|
4562
|
-
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "
|
|
4542
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
4563
4543
|
} | undefined;
|
|
4564
|
-
tabs?: {
|
|
4565
|
-
name: string;
|
|
4566
|
-
pinned: boolean;
|
|
4567
|
-
isDefault: boolean;
|
|
4568
|
-
visible: boolean;
|
|
4569
|
-
label?: string | undefined;
|
|
4570
|
-
icon?: string | undefined;
|
|
4571
|
-
view?: string | undefined;
|
|
4572
|
-
filter?: {
|
|
4573
|
-
field: string;
|
|
4574
|
-
operator: string;
|
|
4575
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
4576
|
-
}[] | undefined;
|
|
4577
|
-
order?: number | undefined;
|
|
4578
|
-
}[] | undefined;
|
|
4579
4544
|
addRecord?: {
|
|
4580
4545
|
enabled: boolean;
|
|
4581
4546
|
position: "top" | "bottom" | "both";
|
|
@@ -4589,31 +4554,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
4589
4554
|
message?: string | undefined;
|
|
4590
4555
|
icon?: string | undefined;
|
|
4591
4556
|
} | undefined;
|
|
4592
|
-
aria?: {
|
|
4593
|
-
ariaLabel?: string | undefined;
|
|
4594
|
-
ariaDescribedBy?: string | undefined;
|
|
4595
|
-
role?: string | undefined;
|
|
4596
|
-
} | undefined;
|
|
4597
|
-
responsive?: {
|
|
4598
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
4599
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
4600
|
-
columns?: {
|
|
4601
|
-
xs?: number | undefined;
|
|
4602
|
-
sm?: number | undefined;
|
|
4603
|
-
md?: number | undefined;
|
|
4604
|
-
lg?: number | undefined;
|
|
4605
|
-
xl?: number | undefined;
|
|
4606
|
-
'2xl'?: number | undefined;
|
|
4607
|
-
} | undefined;
|
|
4608
|
-
order?: {
|
|
4609
|
-
xs?: number | undefined;
|
|
4610
|
-
sm?: number | undefined;
|
|
4611
|
-
md?: number | undefined;
|
|
4612
|
-
lg?: number | undefined;
|
|
4613
|
-
xl?: number | undefined;
|
|
4614
|
-
'2xl'?: number | undefined;
|
|
4615
|
-
} | undefined;
|
|
4616
|
-
} | undefined;
|
|
4617
4557
|
performance?: {
|
|
4618
4558
|
lazyLoad?: boolean | undefined;
|
|
4619
4559
|
virtualScroll?: {
|
|
@@ -4814,7 +4754,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4814
4754
|
readonly inlineTitle?: string | undefined;
|
|
4815
4755
|
readonly inlineColumns?: any[] | undefined;
|
|
4816
4756
|
readonly inlineAmountField?: string | undefined;
|
|
4817
|
-
readonly relatedList?: boolean | undefined;
|
|
4757
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4818
4758
|
readonly relatedListTitle?: string | undefined;
|
|
4819
4759
|
readonly relatedListColumns?: any[] | undefined;
|
|
4820
4760
|
readonly displayField?: string | undefined;
|
|
@@ -4988,7 +4928,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4988
4928
|
readonly inlineTitle?: string | undefined;
|
|
4989
4929
|
readonly inlineColumns?: any[] | undefined;
|
|
4990
4930
|
readonly inlineAmountField?: string | undefined;
|
|
4991
|
-
readonly relatedList?: boolean | undefined;
|
|
4931
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4992
4932
|
readonly relatedListTitle?: string | undefined;
|
|
4993
4933
|
readonly relatedListColumns?: any[] | undefined;
|
|
4994
4934
|
readonly displayField?: string | undefined;
|
|
@@ -5162,7 +5102,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
5162
5102
|
readonly inlineTitle?: string | undefined;
|
|
5163
5103
|
readonly inlineColumns?: any[] | undefined;
|
|
5164
5104
|
readonly inlineAmountField?: string | undefined;
|
|
5165
|
-
readonly relatedList?: boolean | undefined;
|
|
5105
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5166
5106
|
readonly relatedListTitle?: string | undefined;
|
|
5167
5107
|
readonly relatedListColumns?: any[] | undefined;
|
|
5168
5108
|
readonly displayField?: string | undefined;
|
|
@@ -5336,7 +5276,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
5336
5276
|
readonly inlineTitle?: string | undefined;
|
|
5337
5277
|
readonly inlineColumns?: any[] | undefined;
|
|
5338
5278
|
readonly inlineAmountField?: string | undefined;
|
|
5339
|
-
readonly relatedList?: boolean | undefined;
|
|
5279
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5340
5280
|
readonly relatedListTitle?: string | undefined;
|
|
5341
5281
|
readonly relatedListColumns?: any[] | undefined;
|
|
5342
5282
|
readonly displayField?: string | undefined;
|
|
@@ -5510,7 +5450,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
5510
5450
|
readonly inlineTitle?: string | undefined;
|
|
5511
5451
|
readonly inlineColumns?: any[] | undefined;
|
|
5512
5452
|
readonly inlineAmountField?: string | undefined;
|
|
5513
|
-
readonly relatedList?: boolean | undefined;
|
|
5453
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5514
5454
|
readonly relatedListTitle?: string | undefined;
|
|
5515
5455
|
readonly relatedListColumns?: any[] | undefined;
|
|
5516
5456
|
readonly displayField?: string | undefined;
|
|
@@ -5684,7 +5624,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
5684
5624
|
readonly inlineTitle?: string | undefined;
|
|
5685
5625
|
readonly inlineColumns?: any[] | undefined;
|
|
5686
5626
|
readonly inlineAmountField?: string | undefined;
|
|
5687
|
-
readonly relatedList?: boolean | undefined;
|
|
5627
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5688
5628
|
readonly relatedListTitle?: string | undefined;
|
|
5689
5629
|
readonly relatedListColumns?: any[] | undefined;
|
|
5690
5630
|
readonly displayField?: string | undefined;
|
|
@@ -5858,7 +5798,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
5858
5798
|
readonly inlineTitle?: string | undefined;
|
|
5859
5799
|
readonly inlineColumns?: any[] | undefined;
|
|
5860
5800
|
readonly inlineAmountField?: string | undefined;
|
|
5861
|
-
readonly relatedList?: boolean | undefined;
|
|
5801
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5862
5802
|
readonly relatedListTitle?: string | undefined;
|
|
5863
5803
|
readonly relatedListColumns?: any[] | undefined;
|
|
5864
5804
|
readonly displayField?: string | undefined;
|
|
@@ -6032,7 +5972,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
6032
5972
|
readonly inlineTitle?: string | undefined;
|
|
6033
5973
|
readonly inlineColumns?: any[] | undefined;
|
|
6034
5974
|
readonly inlineAmountField?: string | undefined;
|
|
6035
|
-
readonly relatedList?: boolean | undefined;
|
|
5975
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6036
5976
|
readonly relatedListTitle?: string | undefined;
|
|
6037
5977
|
readonly relatedListColumns?: any[] | undefined;
|
|
6038
5978
|
readonly displayField?: string | undefined;
|
|
@@ -6233,7 +6173,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6233
6173
|
inlineTitle?: string | undefined;
|
|
6234
6174
|
inlineColumns?: any[] | undefined;
|
|
6235
6175
|
inlineAmountField?: string | undefined;
|
|
6236
|
-
relatedList?: boolean | undefined;
|
|
6176
|
+
relatedList?: boolean | "primary" | undefined;
|
|
6237
6177
|
relatedListTitle?: string | undefined;
|
|
6238
6178
|
relatedListColumns?: any[] | undefined;
|
|
6239
6179
|
displayField?: string | undefined;
|
|
@@ -6516,7 +6456,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6516
6456
|
highlightFields?: string[] | undefined;
|
|
6517
6457
|
stageField?: string | false | undefined;
|
|
6518
6458
|
listViews?: Record<string, {
|
|
6519
|
-
type: "map" | "tree" | "grid" | "kanban" | "
|
|
6459
|
+
type: "map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart";
|
|
6520
6460
|
columns: string[] | {
|
|
6521
6461
|
field: string;
|
|
6522
6462
|
label?: string | undefined;
|
|
@@ -6532,8 +6472,55 @@ declare const NotificationDelivery: Omit<{
|
|
|
6532
6472
|
link?: boolean | undefined;
|
|
6533
6473
|
action?: string | undefined;
|
|
6534
6474
|
}[];
|
|
6535
|
-
|
|
6475
|
+
sort?: string | {
|
|
6476
|
+
field: string;
|
|
6477
|
+
order: "asc" | "desc";
|
|
6478
|
+
}[] | undefined;
|
|
6479
|
+
filter?: {
|
|
6480
|
+
field: string;
|
|
6481
|
+
operator: string;
|
|
6482
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
6483
|
+
}[] | undefined;
|
|
6484
|
+
description?: string | undefined;
|
|
6536
6485
|
label?: string | undefined;
|
|
6486
|
+
name?: string | undefined;
|
|
6487
|
+
responsive?: {
|
|
6488
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
6489
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
6490
|
+
columns?: {
|
|
6491
|
+
xs?: number | undefined;
|
|
6492
|
+
sm?: number | undefined;
|
|
6493
|
+
md?: number | undefined;
|
|
6494
|
+
lg?: number | undefined;
|
|
6495
|
+
xl?: number | undefined;
|
|
6496
|
+
'2xl'?: number | undefined;
|
|
6497
|
+
} | undefined;
|
|
6498
|
+
order?: {
|
|
6499
|
+
xs?: number | undefined;
|
|
6500
|
+
sm?: number | undefined;
|
|
6501
|
+
md?: number | undefined;
|
|
6502
|
+
lg?: number | undefined;
|
|
6503
|
+
xl?: number | undefined;
|
|
6504
|
+
'2xl'?: number | undefined;
|
|
6505
|
+
} | undefined;
|
|
6506
|
+
} | undefined;
|
|
6507
|
+
navigation?: {
|
|
6508
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
6509
|
+
preventNavigation: boolean;
|
|
6510
|
+
openNewTab: boolean;
|
|
6511
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
6512
|
+
view?: string | undefined;
|
|
6513
|
+
width?: string | number | undefined;
|
|
6514
|
+
} | undefined;
|
|
6515
|
+
sharing?: {
|
|
6516
|
+
type: "personal" | "collaborative";
|
|
6517
|
+
lockedBy?: string | undefined;
|
|
6518
|
+
} | undefined;
|
|
6519
|
+
aria?: {
|
|
6520
|
+
ariaLabel?: string | undefined;
|
|
6521
|
+
ariaDescribedBy?: string | undefined;
|
|
6522
|
+
role?: string | undefined;
|
|
6523
|
+
} | undefined;
|
|
6537
6524
|
data?: {
|
|
6538
6525
|
provider: "object";
|
|
6539
6526
|
object: string;
|
|
@@ -6561,77 +6548,42 @@ declare const NotificationDelivery: Omit<{
|
|
|
6561
6548
|
schemaId: string;
|
|
6562
6549
|
schema?: Record<string, unknown> | undefined;
|
|
6563
6550
|
} | undefined;
|
|
6564
|
-
|
|
6565
|
-
|
|
6566
|
-
|
|
6567
|
-
|
|
6568
|
-
|
|
6569
|
-
|
|
6570
|
-
field: string;
|
|
6571
|
-
order: "asc" | "desc";
|
|
6572
|
-
}[] | undefined;
|
|
6573
|
-
searchableFields?: string[] | undefined;
|
|
6574
|
-
filterableFields?: string[] | undefined;
|
|
6575
|
-
userFilters?: {
|
|
6576
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
6577
|
-
fields?: {
|
|
6578
|
-
field: string;
|
|
6579
|
-
label?: string | undefined;
|
|
6580
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
6581
|
-
options?: {
|
|
6582
|
-
value: string | number | boolean;
|
|
6583
|
-
label: string;
|
|
6584
|
-
color?: string | undefined;
|
|
6585
|
-
}[] | undefined;
|
|
6586
|
-
showCount?: boolean | undefined;
|
|
6587
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
6588
|
-
}[] | undefined;
|
|
6589
|
-
tabs?: {
|
|
6590
|
-
name: string;
|
|
6591
|
-
pinned: boolean;
|
|
6592
|
-
isDefault: boolean;
|
|
6593
|
-
visible: boolean;
|
|
6594
|
-
label?: string | undefined;
|
|
6595
|
-
icon?: string | undefined;
|
|
6596
|
-
view?: string | undefined;
|
|
6597
|
-
filter?: {
|
|
6598
|
-
field: string;
|
|
6599
|
-
operator: string;
|
|
6600
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
6601
|
-
}[] | undefined;
|
|
6602
|
-
order?: number | undefined;
|
|
6603
|
-
}[] | undefined;
|
|
6604
|
-
showAllRecords?: boolean | undefined;
|
|
6551
|
+
tree?: {
|
|
6552
|
+
[x: string]: unknown;
|
|
6553
|
+
parentField?: string | undefined;
|
|
6554
|
+
labelField?: string | undefined;
|
|
6555
|
+
fields?: string[] | undefined;
|
|
6556
|
+
defaultExpandedDepth?: number | undefined;
|
|
6605
6557
|
} | undefined;
|
|
6558
|
+
inlineEdit?: boolean | undefined;
|
|
6559
|
+
virtualScroll?: boolean | undefined;
|
|
6606
6560
|
resizable?: boolean | undefined;
|
|
6607
|
-
striped?: boolean | undefined;
|
|
6608
|
-
bordered?: boolean | undefined;
|
|
6609
|
-
compactToolbar?: boolean | undefined;
|
|
6610
|
-
selection?: {
|
|
6611
|
-
type: "none" | "multiple" | "single";
|
|
6612
|
-
} | undefined;
|
|
6613
|
-
navigation?: {
|
|
6614
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
6615
|
-
preventNavigation: boolean;
|
|
6616
|
-
openNewTab: boolean;
|
|
6617
|
-
view?: string | undefined;
|
|
6618
|
-
width?: string | number | undefined;
|
|
6619
|
-
} | undefined;
|
|
6620
|
-
pagination?: {
|
|
6621
|
-
pageSize: number;
|
|
6622
|
-
pageSizeOptions?: number[] | undefined;
|
|
6623
|
-
} | undefined;
|
|
6624
6561
|
kanban?: {
|
|
6625
6562
|
groupByField: string;
|
|
6626
6563
|
columns: string[];
|
|
6627
6564
|
summarizeField?: string | undefined;
|
|
6628
6565
|
} | undefined;
|
|
6566
|
+
gallery?: {
|
|
6567
|
+
coverFit: "cover" | "contain";
|
|
6568
|
+
cardSize: "small" | "medium" | "large";
|
|
6569
|
+
coverField?: string | undefined;
|
|
6570
|
+
titleField?: string | undefined;
|
|
6571
|
+
visibleFields?: string[] | undefined;
|
|
6572
|
+
} | undefined;
|
|
6629
6573
|
calendar?: {
|
|
6630
6574
|
startDateField: string;
|
|
6631
6575
|
titleField: string;
|
|
6632
6576
|
endDateField?: string | undefined;
|
|
6633
6577
|
colorField?: string | undefined;
|
|
6634
6578
|
} | undefined;
|
|
6579
|
+
timeline?: {
|
|
6580
|
+
startDateField: string;
|
|
6581
|
+
titleField: string;
|
|
6582
|
+
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
6583
|
+
endDateField?: string | undefined;
|
|
6584
|
+
groupByField?: string | undefined;
|
|
6585
|
+
colorField?: string | undefined;
|
|
6586
|
+
} | undefined;
|
|
6635
6587
|
gantt?: {
|
|
6636
6588
|
[x: string]: unknown;
|
|
6637
6589
|
startDateField: string;
|
|
@@ -6663,40 +6615,40 @@ declare const NotificationDelivery: Omit<{
|
|
|
6663
6615
|
}[] | undefined;
|
|
6664
6616
|
autoZoomToFilter?: boolean | undefined;
|
|
6665
6617
|
} | undefined;
|
|
6666
|
-
gallery?: {
|
|
6667
|
-
coverFit: "cover" | "contain";
|
|
6668
|
-
cardSize: "small" | "medium" | "large";
|
|
6669
|
-
coverField?: string | undefined;
|
|
6670
|
-
titleField?: string | undefined;
|
|
6671
|
-
visibleFields?: string[] | undefined;
|
|
6672
|
-
} | undefined;
|
|
6673
|
-
timeline?: {
|
|
6674
|
-
startDateField: string;
|
|
6675
|
-
titleField: string;
|
|
6676
|
-
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
6677
|
-
endDateField?: string | undefined;
|
|
6678
|
-
groupByField?: string | undefined;
|
|
6679
|
-
colorField?: string | undefined;
|
|
6680
|
-
} | undefined;
|
|
6681
6618
|
chart?: {
|
|
6682
6619
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
6683
6620
|
dataset: string;
|
|
6684
6621
|
values: string[];
|
|
6685
6622
|
dimensions?: string[] | undefined;
|
|
6686
6623
|
} | undefined;
|
|
6687
|
-
|
|
6688
|
-
|
|
6689
|
-
|
|
6690
|
-
|
|
6691
|
-
|
|
6692
|
-
|
|
6624
|
+
rowHeight?: "short" | "medium" | "compact" | "tall" | "extra_tall" | undefined;
|
|
6625
|
+
tabs?: {
|
|
6626
|
+
name: string;
|
|
6627
|
+
pinned: boolean;
|
|
6628
|
+
isDefault: boolean;
|
|
6629
|
+
visible: boolean;
|
|
6630
|
+
label?: string | undefined;
|
|
6631
|
+
icon?: string | undefined;
|
|
6632
|
+
view?: string | undefined;
|
|
6633
|
+
filter?: {
|
|
6634
|
+
field: string;
|
|
6635
|
+
operator: string;
|
|
6636
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
6637
|
+
}[] | undefined;
|
|
6638
|
+
order?: number | undefined;
|
|
6639
|
+
}[] | undefined;
|
|
6640
|
+
searchableFields?: string[] | undefined;
|
|
6641
|
+
filterableFields?: string[] | undefined;
|
|
6642
|
+
striped?: boolean | undefined;
|
|
6643
|
+
bordered?: boolean | undefined;
|
|
6644
|
+
compactToolbar?: boolean | undefined;
|
|
6645
|
+
selection?: {
|
|
6646
|
+
type: "none" | "multiple" | "single";
|
|
6693
6647
|
} | undefined;
|
|
6694
|
-
|
|
6695
|
-
|
|
6696
|
-
|
|
6697
|
-
lockedBy?: string | undefined;
|
|
6648
|
+
pagination?: {
|
|
6649
|
+
pageSize: number;
|
|
6650
|
+
pageSizeOptions?: number[] | undefined;
|
|
6698
6651
|
} | undefined;
|
|
6699
|
-
rowHeight?: "short" | "medium" | "compact" | "tall" | "extra_tall" | undefined;
|
|
6700
6652
|
grouping?: {
|
|
6701
6653
|
fields: {
|
|
6702
6654
|
field: string;
|
|
@@ -6713,7 +6665,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
6713
6665
|
rowActions?: string[] | undefined;
|
|
6714
6666
|
bulkActions?: string[] | undefined;
|
|
6715
6667
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
6716
|
-
virtualScroll?: boolean | undefined;
|
|
6717
6668
|
conditionalFormatting?: {
|
|
6718
6669
|
condition: {
|
|
6719
6670
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -6734,7 +6685,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
6734
6685
|
};
|
|
6735
6686
|
style: Record<string, string>;
|
|
6736
6687
|
}[] | undefined;
|
|
6737
|
-
inlineEdit?: boolean | undefined;
|
|
6738
6688
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
6739
6689
|
userActions?: {
|
|
6740
6690
|
sort: boolean;
|
|
@@ -6747,23 +6697,8 @@ declare const NotificationDelivery: Omit<{
|
|
|
6747
6697
|
} | undefined;
|
|
6748
6698
|
appearance?: {
|
|
6749
6699
|
showDescription: boolean;
|
|
6750
|
-
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "
|
|
6700
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
6751
6701
|
} | undefined;
|
|
6752
|
-
tabs?: {
|
|
6753
|
-
name: string;
|
|
6754
|
-
pinned: boolean;
|
|
6755
|
-
isDefault: boolean;
|
|
6756
|
-
visible: boolean;
|
|
6757
|
-
label?: string | undefined;
|
|
6758
|
-
icon?: string | undefined;
|
|
6759
|
-
view?: string | undefined;
|
|
6760
|
-
filter?: {
|
|
6761
|
-
field: string;
|
|
6762
|
-
operator: string;
|
|
6763
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
6764
|
-
}[] | undefined;
|
|
6765
|
-
order?: number | undefined;
|
|
6766
|
-
}[] | undefined;
|
|
6767
6702
|
addRecord?: {
|
|
6768
6703
|
enabled: boolean;
|
|
6769
6704
|
position: "top" | "bottom" | "both";
|
|
@@ -6777,31 +6712,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
6777
6712
|
message?: string | undefined;
|
|
6778
6713
|
icon?: string | undefined;
|
|
6779
6714
|
} | undefined;
|
|
6780
|
-
aria?: {
|
|
6781
|
-
ariaLabel?: string | undefined;
|
|
6782
|
-
ariaDescribedBy?: string | undefined;
|
|
6783
|
-
role?: string | undefined;
|
|
6784
|
-
} | undefined;
|
|
6785
|
-
responsive?: {
|
|
6786
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
6787
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
6788
|
-
columns?: {
|
|
6789
|
-
xs?: number | undefined;
|
|
6790
|
-
sm?: number | undefined;
|
|
6791
|
-
md?: number | undefined;
|
|
6792
|
-
lg?: number | undefined;
|
|
6793
|
-
xl?: number | undefined;
|
|
6794
|
-
'2xl'?: number | undefined;
|
|
6795
|
-
} | undefined;
|
|
6796
|
-
order?: {
|
|
6797
|
-
xs?: number | undefined;
|
|
6798
|
-
sm?: number | undefined;
|
|
6799
|
-
md?: number | undefined;
|
|
6800
|
-
lg?: number | undefined;
|
|
6801
|
-
xl?: number | undefined;
|
|
6802
|
-
'2xl'?: number | undefined;
|
|
6803
|
-
} | undefined;
|
|
6804
|
-
} | undefined;
|
|
6805
6715
|
performance?: {
|
|
6806
6716
|
lazyLoad?: boolean | undefined;
|
|
6807
6717
|
virtualScroll?: {
|
|
@@ -7002,7 +6912,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7002
6912
|
readonly inlineTitle?: string | undefined;
|
|
7003
6913
|
readonly inlineColumns?: any[] | undefined;
|
|
7004
6914
|
readonly inlineAmountField?: string | undefined;
|
|
7005
|
-
readonly relatedList?: boolean | undefined;
|
|
6915
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7006
6916
|
readonly relatedListTitle?: string | undefined;
|
|
7007
6917
|
readonly relatedListColumns?: any[] | undefined;
|
|
7008
6918
|
readonly displayField?: string | undefined;
|
|
@@ -7176,7 +7086,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7176
7086
|
readonly inlineTitle?: string | undefined;
|
|
7177
7087
|
readonly inlineColumns?: any[] | undefined;
|
|
7178
7088
|
readonly inlineAmountField?: string | undefined;
|
|
7179
|
-
readonly relatedList?: boolean | undefined;
|
|
7089
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7180
7090
|
readonly relatedListTitle?: string | undefined;
|
|
7181
7091
|
readonly relatedListColumns?: any[] | undefined;
|
|
7182
7092
|
readonly displayField?: string | undefined;
|
|
@@ -7350,7 +7260,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7350
7260
|
readonly inlineTitle?: string | undefined;
|
|
7351
7261
|
readonly inlineColumns?: any[] | undefined;
|
|
7352
7262
|
readonly inlineAmountField?: string | undefined;
|
|
7353
|
-
readonly relatedList?: boolean | undefined;
|
|
7263
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7354
7264
|
readonly relatedListTitle?: string | undefined;
|
|
7355
7265
|
readonly relatedListColumns?: any[] | undefined;
|
|
7356
7266
|
readonly displayField?: string | undefined;
|
|
@@ -7524,7 +7434,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7524
7434
|
readonly inlineTitle?: string | undefined;
|
|
7525
7435
|
readonly inlineColumns?: any[] | undefined;
|
|
7526
7436
|
readonly inlineAmountField?: string | undefined;
|
|
7527
|
-
readonly relatedList?: boolean | undefined;
|
|
7437
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7528
7438
|
readonly relatedListTitle?: string | undefined;
|
|
7529
7439
|
readonly relatedListColumns?: any[] | undefined;
|
|
7530
7440
|
readonly displayField?: string | undefined;
|
|
@@ -7698,7 +7608,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7698
7608
|
readonly inlineTitle?: string | undefined;
|
|
7699
7609
|
readonly inlineColumns?: any[] | undefined;
|
|
7700
7610
|
readonly inlineAmountField?: string | undefined;
|
|
7701
|
-
readonly relatedList?: boolean | undefined;
|
|
7611
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7702
7612
|
readonly relatedListTitle?: string | undefined;
|
|
7703
7613
|
readonly relatedListColumns?: any[] | undefined;
|
|
7704
7614
|
readonly displayField?: string | undefined;
|
|
@@ -7872,7 +7782,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7872
7782
|
readonly inlineTitle?: string | undefined;
|
|
7873
7783
|
readonly inlineColumns?: any[] | undefined;
|
|
7874
7784
|
readonly inlineAmountField?: string | undefined;
|
|
7875
|
-
readonly relatedList?: boolean | undefined;
|
|
7785
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7876
7786
|
readonly relatedListTitle?: string | undefined;
|
|
7877
7787
|
readonly relatedListColumns?: any[] | undefined;
|
|
7878
7788
|
readonly displayField?: string | undefined;
|
|
@@ -8046,7 +7956,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8046
7956
|
readonly inlineTitle?: string | undefined;
|
|
8047
7957
|
readonly inlineColumns?: any[] | undefined;
|
|
8048
7958
|
readonly inlineAmountField?: string | undefined;
|
|
8049
|
-
readonly relatedList?: boolean | undefined;
|
|
7959
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8050
7960
|
readonly relatedListTitle?: string | undefined;
|
|
8051
7961
|
readonly relatedListColumns?: any[] | undefined;
|
|
8052
7962
|
readonly displayField?: string | undefined;
|
|
@@ -8220,7 +8130,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8220
8130
|
readonly inlineTitle?: string | undefined;
|
|
8221
8131
|
readonly inlineColumns?: any[] | undefined;
|
|
8222
8132
|
readonly inlineAmountField?: string | undefined;
|
|
8223
|
-
readonly relatedList?: boolean | undefined;
|
|
8133
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8224
8134
|
readonly relatedListTitle?: string | undefined;
|
|
8225
8135
|
readonly relatedListColumns?: any[] | undefined;
|
|
8226
8136
|
readonly displayField?: string | undefined;
|
|
@@ -8394,7 +8304,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8394
8304
|
readonly inlineTitle?: string | undefined;
|
|
8395
8305
|
readonly inlineColumns?: any[] | undefined;
|
|
8396
8306
|
readonly inlineAmountField?: string | undefined;
|
|
8397
|
-
readonly relatedList?: boolean | undefined;
|
|
8307
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8398
8308
|
readonly relatedListTitle?: string | undefined;
|
|
8399
8309
|
readonly relatedListColumns?: any[] | undefined;
|
|
8400
8310
|
readonly displayField?: string | undefined;
|
|
@@ -8568,7 +8478,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8568
8478
|
readonly inlineTitle?: string | undefined;
|
|
8569
8479
|
readonly inlineColumns?: any[] | undefined;
|
|
8570
8480
|
readonly inlineAmountField?: string | undefined;
|
|
8571
|
-
readonly relatedList?: boolean | undefined;
|
|
8481
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8572
8482
|
readonly relatedListTitle?: string | undefined;
|
|
8573
8483
|
readonly relatedListColumns?: any[] | undefined;
|
|
8574
8484
|
readonly displayField?: string | undefined;
|
|
@@ -8742,7 +8652,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8742
8652
|
readonly inlineTitle?: string | undefined;
|
|
8743
8653
|
readonly inlineColumns?: any[] | undefined;
|
|
8744
8654
|
readonly inlineAmountField?: string | undefined;
|
|
8745
|
-
readonly relatedList?: boolean | undefined;
|
|
8655
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8746
8656
|
readonly relatedListTitle?: string | undefined;
|
|
8747
8657
|
readonly relatedListColumns?: any[] | undefined;
|
|
8748
8658
|
readonly displayField?: string | undefined;
|
|
@@ -8916,7 +8826,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8916
8826
|
readonly inlineTitle?: string | undefined;
|
|
8917
8827
|
readonly inlineColumns?: any[] | undefined;
|
|
8918
8828
|
readonly inlineAmountField?: string | undefined;
|
|
8919
|
-
readonly relatedList?: boolean | undefined;
|
|
8829
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8920
8830
|
readonly relatedListTitle?: string | undefined;
|
|
8921
8831
|
readonly relatedListColumns?: any[] | undefined;
|
|
8922
8832
|
readonly displayField?: string | undefined;
|
|
@@ -9090,7 +9000,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
9090
9000
|
readonly inlineTitle?: string | undefined;
|
|
9091
9001
|
readonly inlineColumns?: any[] | undefined;
|
|
9092
9002
|
readonly inlineAmountField?: string | undefined;
|
|
9093
|
-
readonly relatedList?: boolean | undefined;
|
|
9003
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
9094
9004
|
readonly relatedListTitle?: string | undefined;
|
|
9095
9005
|
readonly relatedListColumns?: any[] | undefined;
|
|
9096
9006
|
readonly displayField?: string | undefined;
|
|
@@ -9264,7 +9174,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
9264
9174
|
readonly inlineTitle?: string | undefined;
|
|
9265
9175
|
readonly inlineColumns?: any[] | undefined;
|
|
9266
9176
|
readonly inlineAmountField?: string | undefined;
|
|
9267
|
-
readonly relatedList?: boolean | undefined;
|
|
9177
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
9268
9178
|
readonly relatedListTitle?: string | undefined;
|
|
9269
9179
|
readonly relatedListColumns?: any[] | undefined;
|
|
9270
9180
|
readonly displayField?: string | undefined;
|
|
@@ -9438,7 +9348,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
9438
9348
|
readonly inlineTitle?: string | undefined;
|
|
9439
9349
|
readonly inlineColumns?: any[] | undefined;
|
|
9440
9350
|
readonly inlineAmountField?: string | undefined;
|
|
9441
|
-
readonly relatedList?: boolean | undefined;
|
|
9351
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
9442
9352
|
readonly relatedListTitle?: string | undefined;
|
|
9443
9353
|
readonly relatedListColumns?: any[] | undefined;
|
|
9444
9354
|
readonly displayField?: string | undefined;
|
|
@@ -9612,7 +9522,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
9612
9522
|
readonly inlineTitle?: string | undefined;
|
|
9613
9523
|
readonly inlineColumns?: any[] | undefined;
|
|
9614
9524
|
readonly inlineAmountField?: string | undefined;
|
|
9615
|
-
readonly relatedList?: boolean | undefined;
|
|
9525
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
9616
9526
|
readonly relatedListTitle?: string | undefined;
|
|
9617
9527
|
readonly relatedListColumns?: any[] | undefined;
|
|
9618
9528
|
readonly displayField?: string | undefined;
|
|
@@ -9786,7 +9696,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
9786
9696
|
readonly inlineTitle?: string | undefined;
|
|
9787
9697
|
readonly inlineColumns?: any[] | undefined;
|
|
9788
9698
|
readonly inlineAmountField?: string | undefined;
|
|
9789
|
-
readonly relatedList?: boolean | undefined;
|
|
9699
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
9790
9700
|
readonly relatedListTitle?: string | undefined;
|
|
9791
9701
|
readonly relatedListColumns?: any[] | undefined;
|
|
9792
9702
|
readonly displayField?: string | undefined;
|
|
@@ -9995,7 +9905,7 @@ declare const NotificationPreference: Omit<{
|
|
|
9995
9905
|
inlineTitle?: string | undefined;
|
|
9996
9906
|
inlineColumns?: any[] | undefined;
|
|
9997
9907
|
inlineAmountField?: string | undefined;
|
|
9998
|
-
relatedList?: boolean | undefined;
|
|
9908
|
+
relatedList?: boolean | "primary" | undefined;
|
|
9999
9909
|
relatedListTitle?: string | undefined;
|
|
10000
9910
|
relatedListColumns?: any[] | undefined;
|
|
10001
9911
|
displayField?: string | undefined;
|
|
@@ -10278,7 +10188,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10278
10188
|
highlightFields?: string[] | undefined;
|
|
10279
10189
|
stageField?: string | false | undefined;
|
|
10280
10190
|
listViews?: Record<string, {
|
|
10281
|
-
type: "map" | "tree" | "grid" | "kanban" | "
|
|
10191
|
+
type: "map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart";
|
|
10282
10192
|
columns: string[] | {
|
|
10283
10193
|
field: string;
|
|
10284
10194
|
label?: string | undefined;
|
|
@@ -10294,8 +10204,55 @@ declare const NotificationPreference: Omit<{
|
|
|
10294
10204
|
link?: boolean | undefined;
|
|
10295
10205
|
action?: string | undefined;
|
|
10296
10206
|
}[];
|
|
10297
|
-
|
|
10207
|
+
sort?: string | {
|
|
10208
|
+
field: string;
|
|
10209
|
+
order: "asc" | "desc";
|
|
10210
|
+
}[] | undefined;
|
|
10211
|
+
filter?: {
|
|
10212
|
+
field: string;
|
|
10213
|
+
operator: string;
|
|
10214
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
10215
|
+
}[] | undefined;
|
|
10216
|
+
description?: string | undefined;
|
|
10298
10217
|
label?: string | undefined;
|
|
10218
|
+
name?: string | undefined;
|
|
10219
|
+
responsive?: {
|
|
10220
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
10221
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
10222
|
+
columns?: {
|
|
10223
|
+
xs?: number | undefined;
|
|
10224
|
+
sm?: number | undefined;
|
|
10225
|
+
md?: number | undefined;
|
|
10226
|
+
lg?: number | undefined;
|
|
10227
|
+
xl?: number | undefined;
|
|
10228
|
+
'2xl'?: number | undefined;
|
|
10229
|
+
} | undefined;
|
|
10230
|
+
order?: {
|
|
10231
|
+
xs?: number | undefined;
|
|
10232
|
+
sm?: number | undefined;
|
|
10233
|
+
md?: number | undefined;
|
|
10234
|
+
lg?: number | undefined;
|
|
10235
|
+
xl?: number | undefined;
|
|
10236
|
+
'2xl'?: number | undefined;
|
|
10237
|
+
} | undefined;
|
|
10238
|
+
} | undefined;
|
|
10239
|
+
navigation?: {
|
|
10240
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
10241
|
+
preventNavigation: boolean;
|
|
10242
|
+
openNewTab: boolean;
|
|
10243
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
10244
|
+
view?: string | undefined;
|
|
10245
|
+
width?: string | number | undefined;
|
|
10246
|
+
} | undefined;
|
|
10247
|
+
sharing?: {
|
|
10248
|
+
type: "personal" | "collaborative";
|
|
10249
|
+
lockedBy?: string | undefined;
|
|
10250
|
+
} | undefined;
|
|
10251
|
+
aria?: {
|
|
10252
|
+
ariaLabel?: string | undefined;
|
|
10253
|
+
ariaDescribedBy?: string | undefined;
|
|
10254
|
+
role?: string | undefined;
|
|
10255
|
+
} | undefined;
|
|
10299
10256
|
data?: {
|
|
10300
10257
|
provider: "object";
|
|
10301
10258
|
object: string;
|
|
@@ -10323,77 +10280,42 @@ declare const NotificationPreference: Omit<{
|
|
|
10323
10280
|
schemaId: string;
|
|
10324
10281
|
schema?: Record<string, unknown> | undefined;
|
|
10325
10282
|
} | undefined;
|
|
10326
|
-
|
|
10327
|
-
|
|
10328
|
-
|
|
10329
|
-
|
|
10330
|
-
|
|
10331
|
-
|
|
10332
|
-
field: string;
|
|
10333
|
-
order: "asc" | "desc";
|
|
10334
|
-
}[] | undefined;
|
|
10335
|
-
searchableFields?: string[] | undefined;
|
|
10336
|
-
filterableFields?: string[] | undefined;
|
|
10337
|
-
userFilters?: {
|
|
10338
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
10339
|
-
fields?: {
|
|
10340
|
-
field: string;
|
|
10341
|
-
label?: string | undefined;
|
|
10342
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
10343
|
-
options?: {
|
|
10344
|
-
value: string | number | boolean;
|
|
10345
|
-
label: string;
|
|
10346
|
-
color?: string | undefined;
|
|
10347
|
-
}[] | undefined;
|
|
10348
|
-
showCount?: boolean | undefined;
|
|
10349
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
10350
|
-
}[] | undefined;
|
|
10351
|
-
tabs?: {
|
|
10352
|
-
name: string;
|
|
10353
|
-
pinned: boolean;
|
|
10354
|
-
isDefault: boolean;
|
|
10355
|
-
visible: boolean;
|
|
10356
|
-
label?: string | undefined;
|
|
10357
|
-
icon?: string | undefined;
|
|
10358
|
-
view?: string | undefined;
|
|
10359
|
-
filter?: {
|
|
10360
|
-
field: string;
|
|
10361
|
-
operator: string;
|
|
10362
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
10363
|
-
}[] | undefined;
|
|
10364
|
-
order?: number | undefined;
|
|
10365
|
-
}[] | undefined;
|
|
10366
|
-
showAllRecords?: boolean | undefined;
|
|
10283
|
+
tree?: {
|
|
10284
|
+
[x: string]: unknown;
|
|
10285
|
+
parentField?: string | undefined;
|
|
10286
|
+
labelField?: string | undefined;
|
|
10287
|
+
fields?: string[] | undefined;
|
|
10288
|
+
defaultExpandedDepth?: number | undefined;
|
|
10367
10289
|
} | undefined;
|
|
10290
|
+
inlineEdit?: boolean | undefined;
|
|
10291
|
+
virtualScroll?: boolean | undefined;
|
|
10368
10292
|
resizable?: boolean | undefined;
|
|
10369
|
-
striped?: boolean | undefined;
|
|
10370
|
-
bordered?: boolean | undefined;
|
|
10371
|
-
compactToolbar?: boolean | undefined;
|
|
10372
|
-
selection?: {
|
|
10373
|
-
type: "none" | "multiple" | "single";
|
|
10374
|
-
} | undefined;
|
|
10375
|
-
navigation?: {
|
|
10376
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
10377
|
-
preventNavigation: boolean;
|
|
10378
|
-
openNewTab: boolean;
|
|
10379
|
-
view?: string | undefined;
|
|
10380
|
-
width?: string | number | undefined;
|
|
10381
|
-
} | undefined;
|
|
10382
|
-
pagination?: {
|
|
10383
|
-
pageSize: number;
|
|
10384
|
-
pageSizeOptions?: number[] | undefined;
|
|
10385
|
-
} | undefined;
|
|
10386
10293
|
kanban?: {
|
|
10387
10294
|
groupByField: string;
|
|
10388
10295
|
columns: string[];
|
|
10389
10296
|
summarizeField?: string | undefined;
|
|
10390
10297
|
} | undefined;
|
|
10298
|
+
gallery?: {
|
|
10299
|
+
coverFit: "cover" | "contain";
|
|
10300
|
+
cardSize: "small" | "medium" | "large";
|
|
10301
|
+
coverField?: string | undefined;
|
|
10302
|
+
titleField?: string | undefined;
|
|
10303
|
+
visibleFields?: string[] | undefined;
|
|
10304
|
+
} | undefined;
|
|
10391
10305
|
calendar?: {
|
|
10392
10306
|
startDateField: string;
|
|
10393
10307
|
titleField: string;
|
|
10394
10308
|
endDateField?: string | undefined;
|
|
10395
10309
|
colorField?: string | undefined;
|
|
10396
10310
|
} | undefined;
|
|
10311
|
+
timeline?: {
|
|
10312
|
+
startDateField: string;
|
|
10313
|
+
titleField: string;
|
|
10314
|
+
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
10315
|
+
endDateField?: string | undefined;
|
|
10316
|
+
groupByField?: string | undefined;
|
|
10317
|
+
colorField?: string | undefined;
|
|
10318
|
+
} | undefined;
|
|
10397
10319
|
gantt?: {
|
|
10398
10320
|
[x: string]: unknown;
|
|
10399
10321
|
startDateField: string;
|
|
@@ -10425,40 +10347,40 @@ declare const NotificationPreference: Omit<{
|
|
|
10425
10347
|
}[] | undefined;
|
|
10426
10348
|
autoZoomToFilter?: boolean | undefined;
|
|
10427
10349
|
} | undefined;
|
|
10428
|
-
gallery?: {
|
|
10429
|
-
coverFit: "cover" | "contain";
|
|
10430
|
-
cardSize: "small" | "medium" | "large";
|
|
10431
|
-
coverField?: string | undefined;
|
|
10432
|
-
titleField?: string | undefined;
|
|
10433
|
-
visibleFields?: string[] | undefined;
|
|
10434
|
-
} | undefined;
|
|
10435
|
-
timeline?: {
|
|
10436
|
-
startDateField: string;
|
|
10437
|
-
titleField: string;
|
|
10438
|
-
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
10439
|
-
endDateField?: string | undefined;
|
|
10440
|
-
groupByField?: string | undefined;
|
|
10441
|
-
colorField?: string | undefined;
|
|
10442
|
-
} | undefined;
|
|
10443
10350
|
chart?: {
|
|
10444
10351
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
10445
10352
|
dataset: string;
|
|
10446
10353
|
values: string[];
|
|
10447
10354
|
dimensions?: string[] | undefined;
|
|
10448
10355
|
} | undefined;
|
|
10449
|
-
|
|
10450
|
-
|
|
10451
|
-
|
|
10452
|
-
|
|
10453
|
-
|
|
10454
|
-
|
|
10356
|
+
rowHeight?: "short" | "medium" | "compact" | "tall" | "extra_tall" | undefined;
|
|
10357
|
+
tabs?: {
|
|
10358
|
+
name: string;
|
|
10359
|
+
pinned: boolean;
|
|
10360
|
+
isDefault: boolean;
|
|
10361
|
+
visible: boolean;
|
|
10362
|
+
label?: string | undefined;
|
|
10363
|
+
icon?: string | undefined;
|
|
10364
|
+
view?: string | undefined;
|
|
10365
|
+
filter?: {
|
|
10366
|
+
field: string;
|
|
10367
|
+
operator: string;
|
|
10368
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
10369
|
+
}[] | undefined;
|
|
10370
|
+
order?: number | undefined;
|
|
10371
|
+
}[] | undefined;
|
|
10372
|
+
searchableFields?: string[] | undefined;
|
|
10373
|
+
filterableFields?: string[] | undefined;
|
|
10374
|
+
striped?: boolean | undefined;
|
|
10375
|
+
bordered?: boolean | undefined;
|
|
10376
|
+
compactToolbar?: boolean | undefined;
|
|
10377
|
+
selection?: {
|
|
10378
|
+
type: "none" | "multiple" | "single";
|
|
10455
10379
|
} | undefined;
|
|
10456
|
-
|
|
10457
|
-
|
|
10458
|
-
|
|
10459
|
-
lockedBy?: string | undefined;
|
|
10380
|
+
pagination?: {
|
|
10381
|
+
pageSize: number;
|
|
10382
|
+
pageSizeOptions?: number[] | undefined;
|
|
10460
10383
|
} | undefined;
|
|
10461
|
-
rowHeight?: "short" | "medium" | "compact" | "tall" | "extra_tall" | undefined;
|
|
10462
10384
|
grouping?: {
|
|
10463
10385
|
fields: {
|
|
10464
10386
|
field: string;
|
|
@@ -10475,7 +10397,6 @@ declare const NotificationPreference: Omit<{
|
|
|
10475
10397
|
rowActions?: string[] | undefined;
|
|
10476
10398
|
bulkActions?: string[] | undefined;
|
|
10477
10399
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
10478
|
-
virtualScroll?: boolean | undefined;
|
|
10479
10400
|
conditionalFormatting?: {
|
|
10480
10401
|
condition: {
|
|
10481
10402
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -10496,7 +10417,6 @@ declare const NotificationPreference: Omit<{
|
|
|
10496
10417
|
};
|
|
10497
10418
|
style: Record<string, string>;
|
|
10498
10419
|
}[] | undefined;
|
|
10499
|
-
inlineEdit?: boolean | undefined;
|
|
10500
10420
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
10501
10421
|
userActions?: {
|
|
10502
10422
|
sort: boolean;
|
|
@@ -10509,23 +10429,8 @@ declare const NotificationPreference: Omit<{
|
|
|
10509
10429
|
} | undefined;
|
|
10510
10430
|
appearance?: {
|
|
10511
10431
|
showDescription: boolean;
|
|
10512
|
-
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "
|
|
10432
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
10513
10433
|
} | undefined;
|
|
10514
|
-
tabs?: {
|
|
10515
|
-
name: string;
|
|
10516
|
-
pinned: boolean;
|
|
10517
|
-
isDefault: boolean;
|
|
10518
|
-
visible: boolean;
|
|
10519
|
-
label?: string | undefined;
|
|
10520
|
-
icon?: string | undefined;
|
|
10521
|
-
view?: string | undefined;
|
|
10522
|
-
filter?: {
|
|
10523
|
-
field: string;
|
|
10524
|
-
operator: string;
|
|
10525
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
10526
|
-
}[] | undefined;
|
|
10527
|
-
order?: number | undefined;
|
|
10528
|
-
}[] | undefined;
|
|
10529
10434
|
addRecord?: {
|
|
10530
10435
|
enabled: boolean;
|
|
10531
10436
|
position: "top" | "bottom" | "both";
|
|
@@ -10539,31 +10444,6 @@ declare const NotificationPreference: Omit<{
|
|
|
10539
10444
|
message?: string | undefined;
|
|
10540
10445
|
icon?: string | undefined;
|
|
10541
10446
|
} | undefined;
|
|
10542
|
-
aria?: {
|
|
10543
|
-
ariaLabel?: string | undefined;
|
|
10544
|
-
ariaDescribedBy?: string | undefined;
|
|
10545
|
-
role?: string | undefined;
|
|
10546
|
-
} | undefined;
|
|
10547
|
-
responsive?: {
|
|
10548
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
10549
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
10550
|
-
columns?: {
|
|
10551
|
-
xs?: number | undefined;
|
|
10552
|
-
sm?: number | undefined;
|
|
10553
|
-
md?: number | undefined;
|
|
10554
|
-
lg?: number | undefined;
|
|
10555
|
-
xl?: number | undefined;
|
|
10556
|
-
'2xl'?: number | undefined;
|
|
10557
|
-
} | undefined;
|
|
10558
|
-
order?: {
|
|
10559
|
-
xs?: number | undefined;
|
|
10560
|
-
sm?: number | undefined;
|
|
10561
|
-
md?: number | undefined;
|
|
10562
|
-
lg?: number | undefined;
|
|
10563
|
-
xl?: number | undefined;
|
|
10564
|
-
'2xl'?: number | undefined;
|
|
10565
|
-
} | undefined;
|
|
10566
|
-
} | undefined;
|
|
10567
10447
|
performance?: {
|
|
10568
10448
|
lazyLoad?: boolean | undefined;
|
|
10569
10449
|
virtualScroll?: {
|
|
@@ -10764,7 +10644,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10764
10644
|
readonly inlineTitle?: string | undefined;
|
|
10765
10645
|
readonly inlineColumns?: any[] | undefined;
|
|
10766
10646
|
readonly inlineAmountField?: string | undefined;
|
|
10767
|
-
readonly relatedList?: boolean | undefined;
|
|
10647
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
10768
10648
|
readonly relatedListTitle?: string | undefined;
|
|
10769
10649
|
readonly relatedListColumns?: any[] | undefined;
|
|
10770
10650
|
readonly displayField?: string | undefined;
|
|
@@ -10938,7 +10818,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10938
10818
|
readonly inlineTitle?: string | undefined;
|
|
10939
10819
|
readonly inlineColumns?: any[] | undefined;
|
|
10940
10820
|
readonly inlineAmountField?: string | undefined;
|
|
10941
|
-
readonly relatedList?: boolean | undefined;
|
|
10821
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
10942
10822
|
readonly relatedListTitle?: string | undefined;
|
|
10943
10823
|
readonly relatedListColumns?: any[] | undefined;
|
|
10944
10824
|
readonly displayField?: string | undefined;
|
|
@@ -11112,7 +10992,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11112
10992
|
readonly inlineTitle?: string | undefined;
|
|
11113
10993
|
readonly inlineColumns?: any[] | undefined;
|
|
11114
10994
|
readonly inlineAmountField?: string | undefined;
|
|
11115
|
-
readonly relatedList?: boolean | undefined;
|
|
10995
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11116
10996
|
readonly relatedListTitle?: string | undefined;
|
|
11117
10997
|
readonly relatedListColumns?: any[] | undefined;
|
|
11118
10998
|
readonly displayField?: string | undefined;
|
|
@@ -11286,7 +11166,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11286
11166
|
readonly inlineTitle?: string | undefined;
|
|
11287
11167
|
readonly inlineColumns?: any[] | undefined;
|
|
11288
11168
|
readonly inlineAmountField?: string | undefined;
|
|
11289
|
-
readonly relatedList?: boolean | undefined;
|
|
11169
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11290
11170
|
readonly relatedListTitle?: string | undefined;
|
|
11291
11171
|
readonly relatedListColumns?: any[] | undefined;
|
|
11292
11172
|
readonly displayField?: string | undefined;
|
|
@@ -11460,7 +11340,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11460
11340
|
readonly inlineTitle?: string | undefined;
|
|
11461
11341
|
readonly inlineColumns?: any[] | undefined;
|
|
11462
11342
|
readonly inlineAmountField?: string | undefined;
|
|
11463
|
-
readonly relatedList?: boolean | undefined;
|
|
11343
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11464
11344
|
readonly relatedListTitle?: string | undefined;
|
|
11465
11345
|
readonly relatedListColumns?: any[] | undefined;
|
|
11466
11346
|
readonly displayField?: string | undefined;
|
|
@@ -11634,7 +11514,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11634
11514
|
readonly inlineTitle?: string | undefined;
|
|
11635
11515
|
readonly inlineColumns?: any[] | undefined;
|
|
11636
11516
|
readonly inlineAmountField?: string | undefined;
|
|
11637
|
-
readonly relatedList?: boolean | undefined;
|
|
11517
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11638
11518
|
readonly relatedListTitle?: string | undefined;
|
|
11639
11519
|
readonly relatedListColumns?: any[] | undefined;
|
|
11640
11520
|
readonly displayField?: string | undefined;
|
|
@@ -11808,7 +11688,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11808
11688
|
readonly inlineTitle?: string | undefined;
|
|
11809
11689
|
readonly inlineColumns?: any[] | undefined;
|
|
11810
11690
|
readonly inlineAmountField?: string | undefined;
|
|
11811
|
-
readonly relatedList?: boolean | undefined;
|
|
11691
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11812
11692
|
readonly relatedListTitle?: string | undefined;
|
|
11813
11693
|
readonly relatedListColumns?: any[] | undefined;
|
|
11814
11694
|
readonly displayField?: string | undefined;
|
|
@@ -11982,7 +11862,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11982
11862
|
readonly inlineTitle?: string | undefined;
|
|
11983
11863
|
readonly inlineColumns?: any[] | undefined;
|
|
11984
11864
|
readonly inlineAmountField?: string | undefined;
|
|
11985
|
-
readonly relatedList?: boolean | undefined;
|
|
11865
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11986
11866
|
readonly relatedListTitle?: string | undefined;
|
|
11987
11867
|
readonly relatedListColumns?: any[] | undefined;
|
|
11988
11868
|
readonly displayField?: string | undefined;
|
|
@@ -12156,7 +12036,7 @@ declare const NotificationPreference: Omit<{
|
|
|
12156
12036
|
readonly inlineTitle?: string | undefined;
|
|
12157
12037
|
readonly inlineColumns?: any[] | undefined;
|
|
12158
12038
|
readonly inlineAmountField?: string | undefined;
|
|
12159
|
-
readonly relatedList?: boolean | undefined;
|
|
12039
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
12160
12040
|
readonly relatedListTitle?: string | undefined;
|
|
12161
12041
|
readonly relatedListColumns?: any[] | undefined;
|
|
12162
12042
|
readonly displayField?: string | undefined;
|
|
@@ -12357,7 +12237,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
12357
12237
|
inlineTitle?: string | undefined;
|
|
12358
12238
|
inlineColumns?: any[] | undefined;
|
|
12359
12239
|
inlineAmountField?: string | undefined;
|
|
12360
|
-
relatedList?: boolean | undefined;
|
|
12240
|
+
relatedList?: boolean | "primary" | undefined;
|
|
12361
12241
|
relatedListTitle?: string | undefined;
|
|
12362
12242
|
relatedListColumns?: any[] | undefined;
|
|
12363
12243
|
displayField?: string | undefined;
|
|
@@ -12640,7 +12520,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
12640
12520
|
highlightFields?: string[] | undefined;
|
|
12641
12521
|
stageField?: string | false | undefined;
|
|
12642
12522
|
listViews?: Record<string, {
|
|
12643
|
-
type: "map" | "tree" | "grid" | "kanban" | "
|
|
12523
|
+
type: "map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart";
|
|
12644
12524
|
columns: string[] | {
|
|
12645
12525
|
field: string;
|
|
12646
12526
|
label?: string | undefined;
|
|
@@ -12656,8 +12536,55 @@ declare const NotificationSubscription: Omit<{
|
|
|
12656
12536
|
link?: boolean | undefined;
|
|
12657
12537
|
action?: string | undefined;
|
|
12658
12538
|
}[];
|
|
12659
|
-
|
|
12539
|
+
sort?: string | {
|
|
12540
|
+
field: string;
|
|
12541
|
+
order: "asc" | "desc";
|
|
12542
|
+
}[] | undefined;
|
|
12543
|
+
filter?: {
|
|
12544
|
+
field: string;
|
|
12545
|
+
operator: string;
|
|
12546
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
12547
|
+
}[] | undefined;
|
|
12548
|
+
description?: string | undefined;
|
|
12660
12549
|
label?: string | undefined;
|
|
12550
|
+
name?: string | undefined;
|
|
12551
|
+
responsive?: {
|
|
12552
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
12553
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
12554
|
+
columns?: {
|
|
12555
|
+
xs?: number | undefined;
|
|
12556
|
+
sm?: number | undefined;
|
|
12557
|
+
md?: number | undefined;
|
|
12558
|
+
lg?: number | undefined;
|
|
12559
|
+
xl?: number | undefined;
|
|
12560
|
+
'2xl'?: number | undefined;
|
|
12561
|
+
} | undefined;
|
|
12562
|
+
order?: {
|
|
12563
|
+
xs?: number | undefined;
|
|
12564
|
+
sm?: number | undefined;
|
|
12565
|
+
md?: number | undefined;
|
|
12566
|
+
lg?: number | undefined;
|
|
12567
|
+
xl?: number | undefined;
|
|
12568
|
+
'2xl'?: number | undefined;
|
|
12569
|
+
} | undefined;
|
|
12570
|
+
} | undefined;
|
|
12571
|
+
navigation?: {
|
|
12572
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
12573
|
+
preventNavigation: boolean;
|
|
12574
|
+
openNewTab: boolean;
|
|
12575
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
12576
|
+
view?: string | undefined;
|
|
12577
|
+
width?: string | number | undefined;
|
|
12578
|
+
} | undefined;
|
|
12579
|
+
sharing?: {
|
|
12580
|
+
type: "personal" | "collaborative";
|
|
12581
|
+
lockedBy?: string | undefined;
|
|
12582
|
+
} | undefined;
|
|
12583
|
+
aria?: {
|
|
12584
|
+
ariaLabel?: string | undefined;
|
|
12585
|
+
ariaDescribedBy?: string | undefined;
|
|
12586
|
+
role?: string | undefined;
|
|
12587
|
+
} | undefined;
|
|
12661
12588
|
data?: {
|
|
12662
12589
|
provider: "object";
|
|
12663
12590
|
object: string;
|
|
@@ -12685,77 +12612,42 @@ declare const NotificationSubscription: Omit<{
|
|
|
12685
12612
|
schemaId: string;
|
|
12686
12613
|
schema?: Record<string, unknown> | undefined;
|
|
12687
12614
|
} | undefined;
|
|
12688
|
-
|
|
12689
|
-
|
|
12690
|
-
|
|
12691
|
-
|
|
12692
|
-
|
|
12693
|
-
|
|
12694
|
-
field: string;
|
|
12695
|
-
order: "asc" | "desc";
|
|
12696
|
-
}[] | undefined;
|
|
12697
|
-
searchableFields?: string[] | undefined;
|
|
12698
|
-
filterableFields?: string[] | undefined;
|
|
12699
|
-
userFilters?: {
|
|
12700
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
12701
|
-
fields?: {
|
|
12702
|
-
field: string;
|
|
12703
|
-
label?: string | undefined;
|
|
12704
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
12705
|
-
options?: {
|
|
12706
|
-
value: string | number | boolean;
|
|
12707
|
-
label: string;
|
|
12708
|
-
color?: string | undefined;
|
|
12709
|
-
}[] | undefined;
|
|
12710
|
-
showCount?: boolean | undefined;
|
|
12711
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
12712
|
-
}[] | undefined;
|
|
12713
|
-
tabs?: {
|
|
12714
|
-
name: string;
|
|
12715
|
-
pinned: boolean;
|
|
12716
|
-
isDefault: boolean;
|
|
12717
|
-
visible: boolean;
|
|
12718
|
-
label?: string | undefined;
|
|
12719
|
-
icon?: string | undefined;
|
|
12720
|
-
view?: string | undefined;
|
|
12721
|
-
filter?: {
|
|
12722
|
-
field: string;
|
|
12723
|
-
operator: string;
|
|
12724
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
12725
|
-
}[] | undefined;
|
|
12726
|
-
order?: number | undefined;
|
|
12727
|
-
}[] | undefined;
|
|
12728
|
-
showAllRecords?: boolean | undefined;
|
|
12615
|
+
tree?: {
|
|
12616
|
+
[x: string]: unknown;
|
|
12617
|
+
parentField?: string | undefined;
|
|
12618
|
+
labelField?: string | undefined;
|
|
12619
|
+
fields?: string[] | undefined;
|
|
12620
|
+
defaultExpandedDepth?: number | undefined;
|
|
12729
12621
|
} | undefined;
|
|
12622
|
+
inlineEdit?: boolean | undefined;
|
|
12623
|
+
virtualScroll?: boolean | undefined;
|
|
12730
12624
|
resizable?: boolean | undefined;
|
|
12731
|
-
striped?: boolean | undefined;
|
|
12732
|
-
bordered?: boolean | undefined;
|
|
12733
|
-
compactToolbar?: boolean | undefined;
|
|
12734
|
-
selection?: {
|
|
12735
|
-
type: "none" | "multiple" | "single";
|
|
12736
|
-
} | undefined;
|
|
12737
|
-
navigation?: {
|
|
12738
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
12739
|
-
preventNavigation: boolean;
|
|
12740
|
-
openNewTab: boolean;
|
|
12741
|
-
view?: string | undefined;
|
|
12742
|
-
width?: string | number | undefined;
|
|
12743
|
-
} | undefined;
|
|
12744
|
-
pagination?: {
|
|
12745
|
-
pageSize: number;
|
|
12746
|
-
pageSizeOptions?: number[] | undefined;
|
|
12747
|
-
} | undefined;
|
|
12748
12625
|
kanban?: {
|
|
12749
12626
|
groupByField: string;
|
|
12750
12627
|
columns: string[];
|
|
12751
12628
|
summarizeField?: string | undefined;
|
|
12752
12629
|
} | undefined;
|
|
12630
|
+
gallery?: {
|
|
12631
|
+
coverFit: "cover" | "contain";
|
|
12632
|
+
cardSize: "small" | "medium" | "large";
|
|
12633
|
+
coverField?: string | undefined;
|
|
12634
|
+
titleField?: string | undefined;
|
|
12635
|
+
visibleFields?: string[] | undefined;
|
|
12636
|
+
} | undefined;
|
|
12753
12637
|
calendar?: {
|
|
12754
12638
|
startDateField: string;
|
|
12755
12639
|
titleField: string;
|
|
12756
12640
|
endDateField?: string | undefined;
|
|
12757
12641
|
colorField?: string | undefined;
|
|
12758
12642
|
} | undefined;
|
|
12643
|
+
timeline?: {
|
|
12644
|
+
startDateField: string;
|
|
12645
|
+
titleField: string;
|
|
12646
|
+
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
12647
|
+
endDateField?: string | undefined;
|
|
12648
|
+
groupByField?: string | undefined;
|
|
12649
|
+
colorField?: string | undefined;
|
|
12650
|
+
} | undefined;
|
|
12759
12651
|
gantt?: {
|
|
12760
12652
|
[x: string]: unknown;
|
|
12761
12653
|
startDateField: string;
|
|
@@ -12787,40 +12679,40 @@ declare const NotificationSubscription: Omit<{
|
|
|
12787
12679
|
}[] | undefined;
|
|
12788
12680
|
autoZoomToFilter?: boolean | undefined;
|
|
12789
12681
|
} | undefined;
|
|
12790
|
-
gallery?: {
|
|
12791
|
-
coverFit: "cover" | "contain";
|
|
12792
|
-
cardSize: "small" | "medium" | "large";
|
|
12793
|
-
coverField?: string | undefined;
|
|
12794
|
-
titleField?: string | undefined;
|
|
12795
|
-
visibleFields?: string[] | undefined;
|
|
12796
|
-
} | undefined;
|
|
12797
|
-
timeline?: {
|
|
12798
|
-
startDateField: string;
|
|
12799
|
-
titleField: string;
|
|
12800
|
-
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
12801
|
-
endDateField?: string | undefined;
|
|
12802
|
-
groupByField?: string | undefined;
|
|
12803
|
-
colorField?: string | undefined;
|
|
12804
|
-
} | undefined;
|
|
12805
12682
|
chart?: {
|
|
12806
12683
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
12807
12684
|
dataset: string;
|
|
12808
12685
|
values: string[];
|
|
12809
12686
|
dimensions?: string[] | undefined;
|
|
12810
12687
|
} | undefined;
|
|
12811
|
-
|
|
12812
|
-
|
|
12813
|
-
|
|
12814
|
-
|
|
12815
|
-
|
|
12816
|
-
|
|
12688
|
+
rowHeight?: "short" | "medium" | "compact" | "tall" | "extra_tall" | undefined;
|
|
12689
|
+
tabs?: {
|
|
12690
|
+
name: string;
|
|
12691
|
+
pinned: boolean;
|
|
12692
|
+
isDefault: boolean;
|
|
12693
|
+
visible: boolean;
|
|
12694
|
+
label?: string | undefined;
|
|
12695
|
+
icon?: string | undefined;
|
|
12696
|
+
view?: string | undefined;
|
|
12697
|
+
filter?: {
|
|
12698
|
+
field: string;
|
|
12699
|
+
operator: string;
|
|
12700
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
12701
|
+
}[] | undefined;
|
|
12702
|
+
order?: number | undefined;
|
|
12703
|
+
}[] | undefined;
|
|
12704
|
+
searchableFields?: string[] | undefined;
|
|
12705
|
+
filterableFields?: string[] | undefined;
|
|
12706
|
+
striped?: boolean | undefined;
|
|
12707
|
+
bordered?: boolean | undefined;
|
|
12708
|
+
compactToolbar?: boolean | undefined;
|
|
12709
|
+
selection?: {
|
|
12710
|
+
type: "none" | "multiple" | "single";
|
|
12817
12711
|
} | undefined;
|
|
12818
|
-
|
|
12819
|
-
|
|
12820
|
-
|
|
12821
|
-
lockedBy?: string | undefined;
|
|
12712
|
+
pagination?: {
|
|
12713
|
+
pageSize: number;
|
|
12714
|
+
pageSizeOptions?: number[] | undefined;
|
|
12822
12715
|
} | undefined;
|
|
12823
|
-
rowHeight?: "short" | "medium" | "compact" | "tall" | "extra_tall" | undefined;
|
|
12824
12716
|
grouping?: {
|
|
12825
12717
|
fields: {
|
|
12826
12718
|
field: string;
|
|
@@ -12837,7 +12729,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
12837
12729
|
rowActions?: string[] | undefined;
|
|
12838
12730
|
bulkActions?: string[] | undefined;
|
|
12839
12731
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
12840
|
-
virtualScroll?: boolean | undefined;
|
|
12841
12732
|
conditionalFormatting?: {
|
|
12842
12733
|
condition: {
|
|
12843
12734
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -12858,7 +12749,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
12858
12749
|
};
|
|
12859
12750
|
style: Record<string, string>;
|
|
12860
12751
|
}[] | undefined;
|
|
12861
|
-
inlineEdit?: boolean | undefined;
|
|
12862
12752
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
12863
12753
|
userActions?: {
|
|
12864
12754
|
sort: boolean;
|
|
@@ -12871,23 +12761,8 @@ declare const NotificationSubscription: Omit<{
|
|
|
12871
12761
|
} | undefined;
|
|
12872
12762
|
appearance?: {
|
|
12873
12763
|
showDescription: boolean;
|
|
12874
|
-
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "
|
|
12764
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
12875
12765
|
} | undefined;
|
|
12876
|
-
tabs?: {
|
|
12877
|
-
name: string;
|
|
12878
|
-
pinned: boolean;
|
|
12879
|
-
isDefault: boolean;
|
|
12880
|
-
visible: boolean;
|
|
12881
|
-
label?: string | undefined;
|
|
12882
|
-
icon?: string | undefined;
|
|
12883
|
-
view?: string | undefined;
|
|
12884
|
-
filter?: {
|
|
12885
|
-
field: string;
|
|
12886
|
-
operator: string;
|
|
12887
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
12888
|
-
}[] | undefined;
|
|
12889
|
-
order?: number | undefined;
|
|
12890
|
-
}[] | undefined;
|
|
12891
12766
|
addRecord?: {
|
|
12892
12767
|
enabled: boolean;
|
|
12893
12768
|
position: "top" | "bottom" | "both";
|
|
@@ -12901,31 +12776,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
12901
12776
|
message?: string | undefined;
|
|
12902
12777
|
icon?: string | undefined;
|
|
12903
12778
|
} | undefined;
|
|
12904
|
-
aria?: {
|
|
12905
|
-
ariaLabel?: string | undefined;
|
|
12906
|
-
ariaDescribedBy?: string | undefined;
|
|
12907
|
-
role?: string | undefined;
|
|
12908
|
-
} | undefined;
|
|
12909
|
-
responsive?: {
|
|
12910
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
12911
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
12912
|
-
columns?: {
|
|
12913
|
-
xs?: number | undefined;
|
|
12914
|
-
sm?: number | undefined;
|
|
12915
|
-
md?: number | undefined;
|
|
12916
|
-
lg?: number | undefined;
|
|
12917
|
-
xl?: number | undefined;
|
|
12918
|
-
'2xl'?: number | undefined;
|
|
12919
|
-
} | undefined;
|
|
12920
|
-
order?: {
|
|
12921
|
-
xs?: number | undefined;
|
|
12922
|
-
sm?: number | undefined;
|
|
12923
|
-
md?: number | undefined;
|
|
12924
|
-
lg?: number | undefined;
|
|
12925
|
-
xl?: number | undefined;
|
|
12926
|
-
'2xl'?: number | undefined;
|
|
12927
|
-
} | undefined;
|
|
12928
|
-
} | undefined;
|
|
12929
12779
|
performance?: {
|
|
12930
12780
|
lazyLoad?: boolean | undefined;
|
|
12931
12781
|
virtualScroll?: {
|
|
@@ -13126,7 +12976,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13126
12976
|
readonly inlineTitle?: string | undefined;
|
|
13127
12977
|
readonly inlineColumns?: any[] | undefined;
|
|
13128
12978
|
readonly inlineAmountField?: string | undefined;
|
|
13129
|
-
readonly relatedList?: boolean | undefined;
|
|
12979
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
13130
12980
|
readonly relatedListTitle?: string | undefined;
|
|
13131
12981
|
readonly relatedListColumns?: any[] | undefined;
|
|
13132
12982
|
readonly displayField?: string | undefined;
|
|
@@ -13300,7 +13150,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13300
13150
|
readonly inlineTitle?: string | undefined;
|
|
13301
13151
|
readonly inlineColumns?: any[] | undefined;
|
|
13302
13152
|
readonly inlineAmountField?: string | undefined;
|
|
13303
|
-
readonly relatedList?: boolean | undefined;
|
|
13153
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
13304
13154
|
readonly relatedListTitle?: string | undefined;
|
|
13305
13155
|
readonly relatedListColumns?: any[] | undefined;
|
|
13306
13156
|
readonly displayField?: string | undefined;
|
|
@@ -13474,7 +13324,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13474
13324
|
readonly inlineTitle?: string | undefined;
|
|
13475
13325
|
readonly inlineColumns?: any[] | undefined;
|
|
13476
13326
|
readonly inlineAmountField?: string | undefined;
|
|
13477
|
-
readonly relatedList?: boolean | undefined;
|
|
13327
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
13478
13328
|
readonly relatedListTitle?: string | undefined;
|
|
13479
13329
|
readonly relatedListColumns?: any[] | undefined;
|
|
13480
13330
|
readonly displayField?: string | undefined;
|
|
@@ -13648,7 +13498,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13648
13498
|
readonly inlineTitle?: string | undefined;
|
|
13649
13499
|
readonly inlineColumns?: any[] | undefined;
|
|
13650
13500
|
readonly inlineAmountField?: string | undefined;
|
|
13651
|
-
readonly relatedList?: boolean | undefined;
|
|
13501
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
13652
13502
|
readonly relatedListTitle?: string | undefined;
|
|
13653
13503
|
readonly relatedListColumns?: any[] | undefined;
|
|
13654
13504
|
readonly displayField?: string | undefined;
|
|
@@ -13822,7 +13672,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13822
13672
|
readonly inlineTitle?: string | undefined;
|
|
13823
13673
|
readonly inlineColumns?: any[] | undefined;
|
|
13824
13674
|
readonly inlineAmountField?: string | undefined;
|
|
13825
|
-
readonly relatedList?: boolean | undefined;
|
|
13675
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
13826
13676
|
readonly relatedListTitle?: string | undefined;
|
|
13827
13677
|
readonly relatedListColumns?: any[] | undefined;
|
|
13828
13678
|
readonly displayField?: string | undefined;
|
|
@@ -14022,7 +13872,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14022
13872
|
inlineTitle?: string | undefined;
|
|
14023
13873
|
inlineColumns?: any[] | undefined;
|
|
14024
13874
|
inlineAmountField?: string | undefined;
|
|
14025
|
-
relatedList?: boolean | undefined;
|
|
13875
|
+
relatedList?: boolean | "primary" | undefined;
|
|
14026
13876
|
relatedListTitle?: string | undefined;
|
|
14027
13877
|
relatedListColumns?: any[] | undefined;
|
|
14028
13878
|
displayField?: string | undefined;
|
|
@@ -14305,7 +14155,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14305
14155
|
highlightFields?: string[] | undefined;
|
|
14306
14156
|
stageField?: string | false | undefined;
|
|
14307
14157
|
listViews?: Record<string, {
|
|
14308
|
-
type: "map" | "tree" | "grid" | "kanban" | "
|
|
14158
|
+
type: "map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart";
|
|
14309
14159
|
columns: string[] | {
|
|
14310
14160
|
field: string;
|
|
14311
14161
|
label?: string | undefined;
|
|
@@ -14321,8 +14171,55 @@ declare const NotificationTemplate: Omit<{
|
|
|
14321
14171
|
link?: boolean | undefined;
|
|
14322
14172
|
action?: string | undefined;
|
|
14323
14173
|
}[];
|
|
14324
|
-
|
|
14174
|
+
sort?: string | {
|
|
14175
|
+
field: string;
|
|
14176
|
+
order: "asc" | "desc";
|
|
14177
|
+
}[] | undefined;
|
|
14178
|
+
filter?: {
|
|
14179
|
+
field: string;
|
|
14180
|
+
operator: string;
|
|
14181
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
14182
|
+
}[] | undefined;
|
|
14183
|
+
description?: string | undefined;
|
|
14325
14184
|
label?: string | undefined;
|
|
14185
|
+
name?: string | undefined;
|
|
14186
|
+
responsive?: {
|
|
14187
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
14188
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
14189
|
+
columns?: {
|
|
14190
|
+
xs?: number | undefined;
|
|
14191
|
+
sm?: number | undefined;
|
|
14192
|
+
md?: number | undefined;
|
|
14193
|
+
lg?: number | undefined;
|
|
14194
|
+
xl?: number | undefined;
|
|
14195
|
+
'2xl'?: number | undefined;
|
|
14196
|
+
} | undefined;
|
|
14197
|
+
order?: {
|
|
14198
|
+
xs?: number | undefined;
|
|
14199
|
+
sm?: number | undefined;
|
|
14200
|
+
md?: number | undefined;
|
|
14201
|
+
lg?: number | undefined;
|
|
14202
|
+
xl?: number | undefined;
|
|
14203
|
+
'2xl'?: number | undefined;
|
|
14204
|
+
} | undefined;
|
|
14205
|
+
} | undefined;
|
|
14206
|
+
navigation?: {
|
|
14207
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
14208
|
+
preventNavigation: boolean;
|
|
14209
|
+
openNewTab: boolean;
|
|
14210
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
14211
|
+
view?: string | undefined;
|
|
14212
|
+
width?: string | number | undefined;
|
|
14213
|
+
} | undefined;
|
|
14214
|
+
sharing?: {
|
|
14215
|
+
type: "personal" | "collaborative";
|
|
14216
|
+
lockedBy?: string | undefined;
|
|
14217
|
+
} | undefined;
|
|
14218
|
+
aria?: {
|
|
14219
|
+
ariaLabel?: string | undefined;
|
|
14220
|
+
ariaDescribedBy?: string | undefined;
|
|
14221
|
+
role?: string | undefined;
|
|
14222
|
+
} | undefined;
|
|
14326
14223
|
data?: {
|
|
14327
14224
|
provider: "object";
|
|
14328
14225
|
object: string;
|
|
@@ -14350,77 +14247,42 @@ declare const NotificationTemplate: Omit<{
|
|
|
14350
14247
|
schemaId: string;
|
|
14351
14248
|
schema?: Record<string, unknown> | undefined;
|
|
14352
14249
|
} | undefined;
|
|
14353
|
-
|
|
14354
|
-
|
|
14355
|
-
|
|
14356
|
-
|
|
14357
|
-
|
|
14358
|
-
|
|
14359
|
-
field: string;
|
|
14360
|
-
order: "asc" | "desc";
|
|
14361
|
-
}[] | undefined;
|
|
14362
|
-
searchableFields?: string[] | undefined;
|
|
14363
|
-
filterableFields?: string[] | undefined;
|
|
14364
|
-
userFilters?: {
|
|
14365
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
14366
|
-
fields?: {
|
|
14367
|
-
field: string;
|
|
14368
|
-
label?: string | undefined;
|
|
14369
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
14370
|
-
options?: {
|
|
14371
|
-
value: string | number | boolean;
|
|
14372
|
-
label: string;
|
|
14373
|
-
color?: string | undefined;
|
|
14374
|
-
}[] | undefined;
|
|
14375
|
-
showCount?: boolean | undefined;
|
|
14376
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
14377
|
-
}[] | undefined;
|
|
14378
|
-
tabs?: {
|
|
14379
|
-
name: string;
|
|
14380
|
-
pinned: boolean;
|
|
14381
|
-
isDefault: boolean;
|
|
14382
|
-
visible: boolean;
|
|
14383
|
-
label?: string | undefined;
|
|
14384
|
-
icon?: string | undefined;
|
|
14385
|
-
view?: string | undefined;
|
|
14386
|
-
filter?: {
|
|
14387
|
-
field: string;
|
|
14388
|
-
operator: string;
|
|
14389
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
14390
|
-
}[] | undefined;
|
|
14391
|
-
order?: number | undefined;
|
|
14392
|
-
}[] | undefined;
|
|
14393
|
-
showAllRecords?: boolean | undefined;
|
|
14250
|
+
tree?: {
|
|
14251
|
+
[x: string]: unknown;
|
|
14252
|
+
parentField?: string | undefined;
|
|
14253
|
+
labelField?: string | undefined;
|
|
14254
|
+
fields?: string[] | undefined;
|
|
14255
|
+
defaultExpandedDepth?: number | undefined;
|
|
14394
14256
|
} | undefined;
|
|
14257
|
+
inlineEdit?: boolean | undefined;
|
|
14258
|
+
virtualScroll?: boolean | undefined;
|
|
14395
14259
|
resizable?: boolean | undefined;
|
|
14396
|
-
striped?: boolean | undefined;
|
|
14397
|
-
bordered?: boolean | undefined;
|
|
14398
|
-
compactToolbar?: boolean | undefined;
|
|
14399
|
-
selection?: {
|
|
14400
|
-
type: "none" | "multiple" | "single";
|
|
14401
|
-
} | undefined;
|
|
14402
|
-
navigation?: {
|
|
14403
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
14404
|
-
preventNavigation: boolean;
|
|
14405
|
-
openNewTab: boolean;
|
|
14406
|
-
view?: string | undefined;
|
|
14407
|
-
width?: string | number | undefined;
|
|
14408
|
-
} | undefined;
|
|
14409
|
-
pagination?: {
|
|
14410
|
-
pageSize: number;
|
|
14411
|
-
pageSizeOptions?: number[] | undefined;
|
|
14412
|
-
} | undefined;
|
|
14413
14260
|
kanban?: {
|
|
14414
14261
|
groupByField: string;
|
|
14415
14262
|
columns: string[];
|
|
14416
14263
|
summarizeField?: string | undefined;
|
|
14417
14264
|
} | undefined;
|
|
14265
|
+
gallery?: {
|
|
14266
|
+
coverFit: "cover" | "contain";
|
|
14267
|
+
cardSize: "small" | "medium" | "large";
|
|
14268
|
+
coverField?: string | undefined;
|
|
14269
|
+
titleField?: string | undefined;
|
|
14270
|
+
visibleFields?: string[] | undefined;
|
|
14271
|
+
} | undefined;
|
|
14418
14272
|
calendar?: {
|
|
14419
14273
|
startDateField: string;
|
|
14420
14274
|
titleField: string;
|
|
14421
14275
|
endDateField?: string | undefined;
|
|
14422
14276
|
colorField?: string | undefined;
|
|
14423
14277
|
} | undefined;
|
|
14278
|
+
timeline?: {
|
|
14279
|
+
startDateField: string;
|
|
14280
|
+
titleField: string;
|
|
14281
|
+
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
14282
|
+
endDateField?: string | undefined;
|
|
14283
|
+
groupByField?: string | undefined;
|
|
14284
|
+
colorField?: string | undefined;
|
|
14285
|
+
} | undefined;
|
|
14424
14286
|
gantt?: {
|
|
14425
14287
|
[x: string]: unknown;
|
|
14426
14288
|
startDateField: string;
|
|
@@ -14452,40 +14314,40 @@ declare const NotificationTemplate: Omit<{
|
|
|
14452
14314
|
}[] | undefined;
|
|
14453
14315
|
autoZoomToFilter?: boolean | undefined;
|
|
14454
14316
|
} | undefined;
|
|
14455
|
-
gallery?: {
|
|
14456
|
-
coverFit: "cover" | "contain";
|
|
14457
|
-
cardSize: "small" | "medium" | "large";
|
|
14458
|
-
coverField?: string | undefined;
|
|
14459
|
-
titleField?: string | undefined;
|
|
14460
|
-
visibleFields?: string[] | undefined;
|
|
14461
|
-
} | undefined;
|
|
14462
|
-
timeline?: {
|
|
14463
|
-
startDateField: string;
|
|
14464
|
-
titleField: string;
|
|
14465
|
-
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
14466
|
-
endDateField?: string | undefined;
|
|
14467
|
-
groupByField?: string | undefined;
|
|
14468
|
-
colorField?: string | undefined;
|
|
14469
|
-
} | undefined;
|
|
14470
14317
|
chart?: {
|
|
14471
14318
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
14472
14319
|
dataset: string;
|
|
14473
14320
|
values: string[];
|
|
14474
14321
|
dimensions?: string[] | undefined;
|
|
14475
14322
|
} | undefined;
|
|
14476
|
-
|
|
14477
|
-
|
|
14478
|
-
|
|
14479
|
-
|
|
14480
|
-
|
|
14481
|
-
|
|
14323
|
+
rowHeight?: "short" | "medium" | "compact" | "tall" | "extra_tall" | undefined;
|
|
14324
|
+
tabs?: {
|
|
14325
|
+
name: string;
|
|
14326
|
+
pinned: boolean;
|
|
14327
|
+
isDefault: boolean;
|
|
14328
|
+
visible: boolean;
|
|
14329
|
+
label?: string | undefined;
|
|
14330
|
+
icon?: string | undefined;
|
|
14331
|
+
view?: string | undefined;
|
|
14332
|
+
filter?: {
|
|
14333
|
+
field: string;
|
|
14334
|
+
operator: string;
|
|
14335
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
14336
|
+
}[] | undefined;
|
|
14337
|
+
order?: number | undefined;
|
|
14338
|
+
}[] | undefined;
|
|
14339
|
+
searchableFields?: string[] | undefined;
|
|
14340
|
+
filterableFields?: string[] | undefined;
|
|
14341
|
+
striped?: boolean | undefined;
|
|
14342
|
+
bordered?: boolean | undefined;
|
|
14343
|
+
compactToolbar?: boolean | undefined;
|
|
14344
|
+
selection?: {
|
|
14345
|
+
type: "none" | "multiple" | "single";
|
|
14482
14346
|
} | undefined;
|
|
14483
|
-
|
|
14484
|
-
|
|
14485
|
-
|
|
14486
|
-
lockedBy?: string | undefined;
|
|
14347
|
+
pagination?: {
|
|
14348
|
+
pageSize: number;
|
|
14349
|
+
pageSizeOptions?: number[] | undefined;
|
|
14487
14350
|
} | undefined;
|
|
14488
|
-
rowHeight?: "short" | "medium" | "compact" | "tall" | "extra_tall" | undefined;
|
|
14489
14351
|
grouping?: {
|
|
14490
14352
|
fields: {
|
|
14491
14353
|
field: string;
|
|
@@ -14502,7 +14364,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
14502
14364
|
rowActions?: string[] | undefined;
|
|
14503
14365
|
bulkActions?: string[] | undefined;
|
|
14504
14366
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
14505
|
-
virtualScroll?: boolean | undefined;
|
|
14506
14367
|
conditionalFormatting?: {
|
|
14507
14368
|
condition: {
|
|
14508
14369
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -14523,7 +14384,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
14523
14384
|
};
|
|
14524
14385
|
style: Record<string, string>;
|
|
14525
14386
|
}[] | undefined;
|
|
14526
|
-
inlineEdit?: boolean | undefined;
|
|
14527
14387
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
14528
14388
|
userActions?: {
|
|
14529
14389
|
sort: boolean;
|
|
@@ -14536,23 +14396,8 @@ declare const NotificationTemplate: Omit<{
|
|
|
14536
14396
|
} | undefined;
|
|
14537
14397
|
appearance?: {
|
|
14538
14398
|
showDescription: boolean;
|
|
14539
|
-
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "
|
|
14399
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
14540
14400
|
} | undefined;
|
|
14541
|
-
tabs?: {
|
|
14542
|
-
name: string;
|
|
14543
|
-
pinned: boolean;
|
|
14544
|
-
isDefault: boolean;
|
|
14545
|
-
visible: boolean;
|
|
14546
|
-
label?: string | undefined;
|
|
14547
|
-
icon?: string | undefined;
|
|
14548
|
-
view?: string | undefined;
|
|
14549
|
-
filter?: {
|
|
14550
|
-
field: string;
|
|
14551
|
-
operator: string;
|
|
14552
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
14553
|
-
}[] | undefined;
|
|
14554
|
-
order?: number | undefined;
|
|
14555
|
-
}[] | undefined;
|
|
14556
14401
|
addRecord?: {
|
|
14557
14402
|
enabled: boolean;
|
|
14558
14403
|
position: "top" | "bottom" | "both";
|
|
@@ -14566,31 +14411,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
14566
14411
|
message?: string | undefined;
|
|
14567
14412
|
icon?: string | undefined;
|
|
14568
14413
|
} | undefined;
|
|
14569
|
-
aria?: {
|
|
14570
|
-
ariaLabel?: string | undefined;
|
|
14571
|
-
ariaDescribedBy?: string | undefined;
|
|
14572
|
-
role?: string | undefined;
|
|
14573
|
-
} | undefined;
|
|
14574
|
-
responsive?: {
|
|
14575
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
14576
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
14577
|
-
columns?: {
|
|
14578
|
-
xs?: number | undefined;
|
|
14579
|
-
sm?: number | undefined;
|
|
14580
|
-
md?: number | undefined;
|
|
14581
|
-
lg?: number | undefined;
|
|
14582
|
-
xl?: number | undefined;
|
|
14583
|
-
'2xl'?: number | undefined;
|
|
14584
|
-
} | undefined;
|
|
14585
|
-
order?: {
|
|
14586
|
-
xs?: number | undefined;
|
|
14587
|
-
sm?: number | undefined;
|
|
14588
|
-
md?: number | undefined;
|
|
14589
|
-
lg?: number | undefined;
|
|
14590
|
-
xl?: number | undefined;
|
|
14591
|
-
'2xl'?: number | undefined;
|
|
14592
|
-
} | undefined;
|
|
14593
|
-
} | undefined;
|
|
14594
14414
|
performance?: {
|
|
14595
14415
|
lazyLoad?: boolean | undefined;
|
|
14596
14416
|
virtualScroll?: {
|
|
@@ -14791,7 +14611,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14791
14611
|
readonly inlineTitle?: string | undefined;
|
|
14792
14612
|
readonly inlineColumns?: any[] | undefined;
|
|
14793
14613
|
readonly inlineAmountField?: string | undefined;
|
|
14794
|
-
readonly relatedList?: boolean | undefined;
|
|
14614
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
14795
14615
|
readonly relatedListTitle?: string | undefined;
|
|
14796
14616
|
readonly relatedListColumns?: any[] | undefined;
|
|
14797
14617
|
readonly displayField?: string | undefined;
|
|
@@ -14965,7 +14785,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14965
14785
|
readonly inlineTitle?: string | undefined;
|
|
14966
14786
|
readonly inlineColumns?: any[] | undefined;
|
|
14967
14787
|
readonly inlineAmountField?: string | undefined;
|
|
14968
|
-
readonly relatedList?: boolean | undefined;
|
|
14788
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
14969
14789
|
readonly relatedListTitle?: string | undefined;
|
|
14970
14790
|
readonly relatedListColumns?: any[] | undefined;
|
|
14971
14791
|
readonly displayField?: string | undefined;
|
|
@@ -15139,7 +14959,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
15139
14959
|
readonly inlineTitle?: string | undefined;
|
|
15140
14960
|
readonly inlineColumns?: any[] | undefined;
|
|
15141
14961
|
readonly inlineAmountField?: string | undefined;
|
|
15142
|
-
readonly relatedList?: boolean | undefined;
|
|
14962
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
15143
14963
|
readonly relatedListTitle?: string | undefined;
|
|
15144
14964
|
readonly relatedListColumns?: any[] | undefined;
|
|
15145
14965
|
readonly displayField?: string | undefined;
|
|
@@ -15313,7 +15133,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
15313
15133
|
readonly inlineTitle?: string | undefined;
|
|
15314
15134
|
readonly inlineColumns?: any[] | undefined;
|
|
15315
15135
|
readonly inlineAmountField?: string | undefined;
|
|
15316
|
-
readonly relatedList?: boolean | undefined;
|
|
15136
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
15317
15137
|
readonly relatedListTitle?: string | undefined;
|
|
15318
15138
|
readonly relatedListColumns?: any[] | undefined;
|
|
15319
15139
|
readonly displayField?: string | undefined;
|
|
@@ -15487,7 +15307,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
15487
15307
|
readonly inlineTitle?: string | undefined;
|
|
15488
15308
|
readonly inlineColumns?: any[] | undefined;
|
|
15489
15309
|
readonly inlineAmountField?: string | undefined;
|
|
15490
|
-
readonly relatedList?: boolean | undefined;
|
|
15310
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
15491
15311
|
readonly relatedListTitle?: string | undefined;
|
|
15492
15312
|
readonly relatedListColumns?: any[] | undefined;
|
|
15493
15313
|
readonly displayField?: string | undefined;
|
|
@@ -15661,7 +15481,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
15661
15481
|
readonly inlineTitle?: string | undefined;
|
|
15662
15482
|
readonly inlineColumns?: any[] | undefined;
|
|
15663
15483
|
readonly inlineAmountField?: string | undefined;
|
|
15664
|
-
readonly relatedList?: boolean | undefined;
|
|
15484
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
15665
15485
|
readonly relatedListTitle?: string | undefined;
|
|
15666
15486
|
readonly relatedListColumns?: any[] | undefined;
|
|
15667
15487
|
readonly displayField?: string | undefined;
|
|
@@ -15835,7 +15655,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
15835
15655
|
readonly inlineTitle?: string | undefined;
|
|
15836
15656
|
readonly inlineColumns?: any[] | undefined;
|
|
15837
15657
|
readonly inlineAmountField?: string | undefined;
|
|
15838
|
-
readonly relatedList?: boolean | undefined;
|
|
15658
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
15839
15659
|
readonly relatedListTitle?: string | undefined;
|
|
15840
15660
|
readonly relatedListColumns?: any[] | undefined;
|
|
15841
15661
|
readonly displayField?: string | undefined;
|
|
@@ -16009,7 +15829,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
16009
15829
|
readonly inlineTitle?: string | undefined;
|
|
16010
15830
|
readonly inlineColumns?: any[] | undefined;
|
|
16011
15831
|
readonly inlineAmountField?: string | undefined;
|
|
16012
|
-
readonly relatedList?: boolean | undefined;
|
|
15832
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
16013
15833
|
readonly relatedListTitle?: string | undefined;
|
|
16014
15834
|
readonly relatedListColumns?: any[] | undefined;
|
|
16015
15835
|
readonly displayField?: string | undefined;
|
|
@@ -16183,7 +16003,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
16183
16003
|
readonly inlineTitle?: string | undefined;
|
|
16184
16004
|
readonly inlineColumns?: any[] | undefined;
|
|
16185
16005
|
readonly inlineAmountField?: string | undefined;
|
|
16186
|
-
readonly relatedList?: boolean | undefined;
|
|
16006
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
16187
16007
|
readonly relatedListTitle?: string | undefined;
|
|
16188
16008
|
readonly relatedListColumns?: any[] | undefined;
|
|
16189
16009
|
readonly displayField?: string | undefined;
|
|
@@ -16357,7 +16177,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
16357
16177
|
readonly inlineTitle?: string | undefined;
|
|
16358
16178
|
readonly inlineColumns?: any[] | undefined;
|
|
16359
16179
|
readonly inlineAmountField?: string | undefined;
|
|
16360
|
-
readonly relatedList?: boolean | undefined;
|
|
16180
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
16361
16181
|
readonly relatedListTitle?: string | undefined;
|
|
16362
16182
|
readonly relatedListColumns?: any[] | undefined;
|
|
16363
16183
|
readonly displayField?: string | undefined;
|
|
@@ -16531,7 +16351,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
16531
16351
|
readonly inlineTitle?: string | undefined;
|
|
16532
16352
|
readonly inlineColumns?: any[] | undefined;
|
|
16533
16353
|
readonly inlineAmountField?: string | undefined;
|
|
16534
|
-
readonly relatedList?: boolean | undefined;
|
|
16354
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
16535
16355
|
readonly relatedListTitle?: string | undefined;
|
|
16536
16356
|
readonly relatedListColumns?: any[] | undefined;
|
|
16537
16357
|
readonly displayField?: string | undefined;
|
|
@@ -16739,7 +16559,7 @@ declare const HttpDelivery: Omit<{
|
|
|
16739
16559
|
inlineTitle?: string | undefined;
|
|
16740
16560
|
inlineColumns?: any[] | undefined;
|
|
16741
16561
|
inlineAmountField?: string | undefined;
|
|
16742
|
-
relatedList?: boolean | undefined;
|
|
16562
|
+
relatedList?: boolean | "primary" | undefined;
|
|
16743
16563
|
relatedListTitle?: string | undefined;
|
|
16744
16564
|
relatedListColumns?: any[] | undefined;
|
|
16745
16565
|
displayField?: string | undefined;
|
|
@@ -17022,7 +16842,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17022
16842
|
highlightFields?: string[] | undefined;
|
|
17023
16843
|
stageField?: string | false | undefined;
|
|
17024
16844
|
listViews?: Record<string, {
|
|
17025
|
-
type: "map" | "tree" | "grid" | "kanban" | "
|
|
16845
|
+
type: "map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart";
|
|
17026
16846
|
columns: string[] | {
|
|
17027
16847
|
field: string;
|
|
17028
16848
|
label?: string | undefined;
|
|
@@ -17038,8 +16858,55 @@ declare const HttpDelivery: Omit<{
|
|
|
17038
16858
|
link?: boolean | undefined;
|
|
17039
16859
|
action?: string | undefined;
|
|
17040
16860
|
}[];
|
|
17041
|
-
|
|
16861
|
+
sort?: string | {
|
|
16862
|
+
field: string;
|
|
16863
|
+
order: "asc" | "desc";
|
|
16864
|
+
}[] | undefined;
|
|
16865
|
+
filter?: {
|
|
16866
|
+
field: string;
|
|
16867
|
+
operator: string;
|
|
16868
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
16869
|
+
}[] | undefined;
|
|
16870
|
+
description?: string | undefined;
|
|
17042
16871
|
label?: string | undefined;
|
|
16872
|
+
name?: string | undefined;
|
|
16873
|
+
responsive?: {
|
|
16874
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
16875
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
16876
|
+
columns?: {
|
|
16877
|
+
xs?: number | undefined;
|
|
16878
|
+
sm?: number | undefined;
|
|
16879
|
+
md?: number | undefined;
|
|
16880
|
+
lg?: number | undefined;
|
|
16881
|
+
xl?: number | undefined;
|
|
16882
|
+
'2xl'?: number | undefined;
|
|
16883
|
+
} | undefined;
|
|
16884
|
+
order?: {
|
|
16885
|
+
xs?: number | undefined;
|
|
16886
|
+
sm?: number | undefined;
|
|
16887
|
+
md?: number | undefined;
|
|
16888
|
+
lg?: number | undefined;
|
|
16889
|
+
xl?: number | undefined;
|
|
16890
|
+
'2xl'?: number | undefined;
|
|
16891
|
+
} | undefined;
|
|
16892
|
+
} | undefined;
|
|
16893
|
+
navigation?: {
|
|
16894
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
16895
|
+
preventNavigation: boolean;
|
|
16896
|
+
openNewTab: boolean;
|
|
16897
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
16898
|
+
view?: string | undefined;
|
|
16899
|
+
width?: string | number | undefined;
|
|
16900
|
+
} | undefined;
|
|
16901
|
+
sharing?: {
|
|
16902
|
+
type: "personal" | "collaborative";
|
|
16903
|
+
lockedBy?: string | undefined;
|
|
16904
|
+
} | undefined;
|
|
16905
|
+
aria?: {
|
|
16906
|
+
ariaLabel?: string | undefined;
|
|
16907
|
+
ariaDescribedBy?: string | undefined;
|
|
16908
|
+
role?: string | undefined;
|
|
16909
|
+
} | undefined;
|
|
17043
16910
|
data?: {
|
|
17044
16911
|
provider: "object";
|
|
17045
16912
|
object: string;
|
|
@@ -17067,77 +16934,42 @@ declare const HttpDelivery: Omit<{
|
|
|
17067
16934
|
schemaId: string;
|
|
17068
16935
|
schema?: Record<string, unknown> | undefined;
|
|
17069
16936
|
} | undefined;
|
|
17070
|
-
|
|
17071
|
-
|
|
17072
|
-
|
|
17073
|
-
|
|
17074
|
-
|
|
17075
|
-
|
|
17076
|
-
field: string;
|
|
17077
|
-
order: "asc" | "desc";
|
|
17078
|
-
}[] | undefined;
|
|
17079
|
-
searchableFields?: string[] | undefined;
|
|
17080
|
-
filterableFields?: string[] | undefined;
|
|
17081
|
-
userFilters?: {
|
|
17082
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
17083
|
-
fields?: {
|
|
17084
|
-
field: string;
|
|
17085
|
-
label?: string | undefined;
|
|
17086
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
17087
|
-
options?: {
|
|
17088
|
-
value: string | number | boolean;
|
|
17089
|
-
label: string;
|
|
17090
|
-
color?: string | undefined;
|
|
17091
|
-
}[] | undefined;
|
|
17092
|
-
showCount?: boolean | undefined;
|
|
17093
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
17094
|
-
}[] | undefined;
|
|
17095
|
-
tabs?: {
|
|
17096
|
-
name: string;
|
|
17097
|
-
pinned: boolean;
|
|
17098
|
-
isDefault: boolean;
|
|
17099
|
-
visible: boolean;
|
|
17100
|
-
label?: string | undefined;
|
|
17101
|
-
icon?: string | undefined;
|
|
17102
|
-
view?: string | undefined;
|
|
17103
|
-
filter?: {
|
|
17104
|
-
field: string;
|
|
17105
|
-
operator: string;
|
|
17106
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
17107
|
-
}[] | undefined;
|
|
17108
|
-
order?: number | undefined;
|
|
17109
|
-
}[] | undefined;
|
|
17110
|
-
showAllRecords?: boolean | undefined;
|
|
16937
|
+
tree?: {
|
|
16938
|
+
[x: string]: unknown;
|
|
16939
|
+
parentField?: string | undefined;
|
|
16940
|
+
labelField?: string | undefined;
|
|
16941
|
+
fields?: string[] | undefined;
|
|
16942
|
+
defaultExpandedDepth?: number | undefined;
|
|
17111
16943
|
} | undefined;
|
|
16944
|
+
inlineEdit?: boolean | undefined;
|
|
16945
|
+
virtualScroll?: boolean | undefined;
|
|
17112
16946
|
resizable?: boolean | undefined;
|
|
17113
|
-
striped?: boolean | undefined;
|
|
17114
|
-
bordered?: boolean | undefined;
|
|
17115
|
-
compactToolbar?: boolean | undefined;
|
|
17116
|
-
selection?: {
|
|
17117
|
-
type: "none" | "multiple" | "single";
|
|
17118
|
-
} | undefined;
|
|
17119
|
-
navigation?: {
|
|
17120
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
17121
|
-
preventNavigation: boolean;
|
|
17122
|
-
openNewTab: boolean;
|
|
17123
|
-
view?: string | undefined;
|
|
17124
|
-
width?: string | number | undefined;
|
|
17125
|
-
} | undefined;
|
|
17126
|
-
pagination?: {
|
|
17127
|
-
pageSize: number;
|
|
17128
|
-
pageSizeOptions?: number[] | undefined;
|
|
17129
|
-
} | undefined;
|
|
17130
16947
|
kanban?: {
|
|
17131
16948
|
groupByField: string;
|
|
17132
16949
|
columns: string[];
|
|
17133
16950
|
summarizeField?: string | undefined;
|
|
17134
16951
|
} | undefined;
|
|
16952
|
+
gallery?: {
|
|
16953
|
+
coverFit: "cover" | "contain";
|
|
16954
|
+
cardSize: "small" | "medium" | "large";
|
|
16955
|
+
coverField?: string | undefined;
|
|
16956
|
+
titleField?: string | undefined;
|
|
16957
|
+
visibleFields?: string[] | undefined;
|
|
16958
|
+
} | undefined;
|
|
17135
16959
|
calendar?: {
|
|
17136
16960
|
startDateField: string;
|
|
17137
16961
|
titleField: string;
|
|
17138
16962
|
endDateField?: string | undefined;
|
|
17139
16963
|
colorField?: string | undefined;
|
|
17140
16964
|
} | undefined;
|
|
16965
|
+
timeline?: {
|
|
16966
|
+
startDateField: string;
|
|
16967
|
+
titleField: string;
|
|
16968
|
+
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
16969
|
+
endDateField?: string | undefined;
|
|
16970
|
+
groupByField?: string | undefined;
|
|
16971
|
+
colorField?: string | undefined;
|
|
16972
|
+
} | undefined;
|
|
17141
16973
|
gantt?: {
|
|
17142
16974
|
[x: string]: unknown;
|
|
17143
16975
|
startDateField: string;
|
|
@@ -17169,40 +17001,40 @@ declare const HttpDelivery: Omit<{
|
|
|
17169
17001
|
}[] | undefined;
|
|
17170
17002
|
autoZoomToFilter?: boolean | undefined;
|
|
17171
17003
|
} | undefined;
|
|
17172
|
-
gallery?: {
|
|
17173
|
-
coverFit: "cover" | "contain";
|
|
17174
|
-
cardSize: "small" | "medium" | "large";
|
|
17175
|
-
coverField?: string | undefined;
|
|
17176
|
-
titleField?: string | undefined;
|
|
17177
|
-
visibleFields?: string[] | undefined;
|
|
17178
|
-
} | undefined;
|
|
17179
|
-
timeline?: {
|
|
17180
|
-
startDateField: string;
|
|
17181
|
-
titleField: string;
|
|
17182
|
-
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
17183
|
-
endDateField?: string | undefined;
|
|
17184
|
-
groupByField?: string | undefined;
|
|
17185
|
-
colorField?: string | undefined;
|
|
17186
|
-
} | undefined;
|
|
17187
17004
|
chart?: {
|
|
17188
17005
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
17189
17006
|
dataset: string;
|
|
17190
17007
|
values: string[];
|
|
17191
17008
|
dimensions?: string[] | undefined;
|
|
17192
17009
|
} | undefined;
|
|
17193
|
-
|
|
17194
|
-
|
|
17195
|
-
|
|
17196
|
-
|
|
17197
|
-
|
|
17198
|
-
|
|
17010
|
+
rowHeight?: "short" | "medium" | "compact" | "tall" | "extra_tall" | undefined;
|
|
17011
|
+
tabs?: {
|
|
17012
|
+
name: string;
|
|
17013
|
+
pinned: boolean;
|
|
17014
|
+
isDefault: boolean;
|
|
17015
|
+
visible: boolean;
|
|
17016
|
+
label?: string | undefined;
|
|
17017
|
+
icon?: string | undefined;
|
|
17018
|
+
view?: string | undefined;
|
|
17019
|
+
filter?: {
|
|
17020
|
+
field: string;
|
|
17021
|
+
operator: string;
|
|
17022
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
17023
|
+
}[] | undefined;
|
|
17024
|
+
order?: number | undefined;
|
|
17025
|
+
}[] | undefined;
|
|
17026
|
+
searchableFields?: string[] | undefined;
|
|
17027
|
+
filterableFields?: string[] | undefined;
|
|
17028
|
+
striped?: boolean | undefined;
|
|
17029
|
+
bordered?: boolean | undefined;
|
|
17030
|
+
compactToolbar?: boolean | undefined;
|
|
17031
|
+
selection?: {
|
|
17032
|
+
type: "none" | "multiple" | "single";
|
|
17199
17033
|
} | undefined;
|
|
17200
|
-
|
|
17201
|
-
|
|
17202
|
-
|
|
17203
|
-
lockedBy?: string | undefined;
|
|
17034
|
+
pagination?: {
|
|
17035
|
+
pageSize: number;
|
|
17036
|
+
pageSizeOptions?: number[] | undefined;
|
|
17204
17037
|
} | undefined;
|
|
17205
|
-
rowHeight?: "short" | "medium" | "compact" | "tall" | "extra_tall" | undefined;
|
|
17206
17038
|
grouping?: {
|
|
17207
17039
|
fields: {
|
|
17208
17040
|
field: string;
|
|
@@ -17219,7 +17051,6 @@ declare const HttpDelivery: Omit<{
|
|
|
17219
17051
|
rowActions?: string[] | undefined;
|
|
17220
17052
|
bulkActions?: string[] | undefined;
|
|
17221
17053
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
17222
|
-
virtualScroll?: boolean | undefined;
|
|
17223
17054
|
conditionalFormatting?: {
|
|
17224
17055
|
condition: {
|
|
17225
17056
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -17240,7 +17071,6 @@ declare const HttpDelivery: Omit<{
|
|
|
17240
17071
|
};
|
|
17241
17072
|
style: Record<string, string>;
|
|
17242
17073
|
}[] | undefined;
|
|
17243
|
-
inlineEdit?: boolean | undefined;
|
|
17244
17074
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
17245
17075
|
userActions?: {
|
|
17246
17076
|
sort: boolean;
|
|
@@ -17253,23 +17083,8 @@ declare const HttpDelivery: Omit<{
|
|
|
17253
17083
|
} | undefined;
|
|
17254
17084
|
appearance?: {
|
|
17255
17085
|
showDescription: boolean;
|
|
17256
|
-
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "
|
|
17086
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
17257
17087
|
} | undefined;
|
|
17258
|
-
tabs?: {
|
|
17259
|
-
name: string;
|
|
17260
|
-
pinned: boolean;
|
|
17261
|
-
isDefault: boolean;
|
|
17262
|
-
visible: boolean;
|
|
17263
|
-
label?: string | undefined;
|
|
17264
|
-
icon?: string | undefined;
|
|
17265
|
-
view?: string | undefined;
|
|
17266
|
-
filter?: {
|
|
17267
|
-
field: string;
|
|
17268
|
-
operator: string;
|
|
17269
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
17270
|
-
}[] | undefined;
|
|
17271
|
-
order?: number | undefined;
|
|
17272
|
-
}[] | undefined;
|
|
17273
17088
|
addRecord?: {
|
|
17274
17089
|
enabled: boolean;
|
|
17275
17090
|
position: "top" | "bottom" | "both";
|
|
@@ -17283,31 +17098,6 @@ declare const HttpDelivery: Omit<{
|
|
|
17283
17098
|
message?: string | undefined;
|
|
17284
17099
|
icon?: string | undefined;
|
|
17285
17100
|
} | undefined;
|
|
17286
|
-
aria?: {
|
|
17287
|
-
ariaLabel?: string | undefined;
|
|
17288
|
-
ariaDescribedBy?: string | undefined;
|
|
17289
|
-
role?: string | undefined;
|
|
17290
|
-
} | undefined;
|
|
17291
|
-
responsive?: {
|
|
17292
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
17293
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
17294
|
-
columns?: {
|
|
17295
|
-
xs?: number | undefined;
|
|
17296
|
-
sm?: number | undefined;
|
|
17297
|
-
md?: number | undefined;
|
|
17298
|
-
lg?: number | undefined;
|
|
17299
|
-
xl?: number | undefined;
|
|
17300
|
-
'2xl'?: number | undefined;
|
|
17301
|
-
} | undefined;
|
|
17302
|
-
order?: {
|
|
17303
|
-
xs?: number | undefined;
|
|
17304
|
-
sm?: number | undefined;
|
|
17305
|
-
md?: number | undefined;
|
|
17306
|
-
lg?: number | undefined;
|
|
17307
|
-
xl?: number | undefined;
|
|
17308
|
-
'2xl'?: number | undefined;
|
|
17309
|
-
} | undefined;
|
|
17310
|
-
} | undefined;
|
|
17311
17101
|
performance?: {
|
|
17312
17102
|
lazyLoad?: boolean | undefined;
|
|
17313
17103
|
virtualScroll?: {
|
|
@@ -17579,7 +17369,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17579
17369
|
readonly inlineTitle?: string | undefined;
|
|
17580
17370
|
readonly inlineColumns?: any[] | undefined;
|
|
17581
17371
|
readonly inlineAmountField?: string | undefined;
|
|
17582
|
-
readonly relatedList?: boolean | undefined;
|
|
17372
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
17583
17373
|
readonly relatedListTitle?: string | undefined;
|
|
17584
17374
|
readonly relatedListColumns?: any[] | undefined;
|
|
17585
17375
|
readonly displayField?: string | undefined;
|
|
@@ -17753,7 +17543,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17753
17543
|
readonly inlineTitle?: string | undefined;
|
|
17754
17544
|
readonly inlineColumns?: any[] | undefined;
|
|
17755
17545
|
readonly inlineAmountField?: string | undefined;
|
|
17756
|
-
readonly relatedList?: boolean | undefined;
|
|
17546
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
17757
17547
|
readonly relatedListTitle?: string | undefined;
|
|
17758
17548
|
readonly relatedListColumns?: any[] | undefined;
|
|
17759
17549
|
readonly displayField?: string | undefined;
|
|
@@ -17927,7 +17717,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17927
17717
|
readonly inlineTitle?: string | undefined;
|
|
17928
17718
|
readonly inlineColumns?: any[] | undefined;
|
|
17929
17719
|
readonly inlineAmountField?: string | undefined;
|
|
17930
|
-
readonly relatedList?: boolean | undefined;
|
|
17720
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
17931
17721
|
readonly relatedListTitle?: string | undefined;
|
|
17932
17722
|
readonly relatedListColumns?: any[] | undefined;
|
|
17933
17723
|
readonly displayField?: string | undefined;
|
|
@@ -18101,7 +17891,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18101
17891
|
readonly inlineTitle?: string | undefined;
|
|
18102
17892
|
readonly inlineColumns?: any[] | undefined;
|
|
18103
17893
|
readonly inlineAmountField?: string | undefined;
|
|
18104
|
-
readonly relatedList?: boolean | undefined;
|
|
17894
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
18105
17895
|
readonly relatedListTitle?: string | undefined;
|
|
18106
17896
|
readonly relatedListColumns?: any[] | undefined;
|
|
18107
17897
|
readonly displayField?: string | undefined;
|
|
@@ -18275,7 +18065,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18275
18065
|
readonly inlineTitle?: string | undefined;
|
|
18276
18066
|
readonly inlineColumns?: any[] | undefined;
|
|
18277
18067
|
readonly inlineAmountField?: string | undefined;
|
|
18278
|
-
readonly relatedList?: boolean | undefined;
|
|
18068
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
18279
18069
|
readonly relatedListTitle?: string | undefined;
|
|
18280
18070
|
readonly relatedListColumns?: any[] | undefined;
|
|
18281
18071
|
readonly displayField?: string | undefined;
|
|
@@ -18449,7 +18239,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18449
18239
|
readonly inlineTitle?: string | undefined;
|
|
18450
18240
|
readonly inlineColumns?: any[] | undefined;
|
|
18451
18241
|
readonly inlineAmountField?: string | undefined;
|
|
18452
|
-
readonly relatedList?: boolean | undefined;
|
|
18242
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
18453
18243
|
readonly relatedListTitle?: string | undefined;
|
|
18454
18244
|
readonly relatedListColumns?: any[] | undefined;
|
|
18455
18245
|
readonly displayField?: string | undefined;
|
|
@@ -18623,7 +18413,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18623
18413
|
readonly inlineTitle?: string | undefined;
|
|
18624
18414
|
readonly inlineColumns?: any[] | undefined;
|
|
18625
18415
|
readonly inlineAmountField?: string | undefined;
|
|
18626
|
-
readonly relatedList?: boolean | undefined;
|
|
18416
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
18627
18417
|
readonly relatedListTitle?: string | undefined;
|
|
18628
18418
|
readonly relatedListColumns?: any[] | undefined;
|
|
18629
18419
|
readonly displayField?: string | undefined;
|
|
@@ -18797,7 +18587,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18797
18587
|
readonly inlineTitle?: string | undefined;
|
|
18798
18588
|
readonly inlineColumns?: any[] | undefined;
|
|
18799
18589
|
readonly inlineAmountField?: string | undefined;
|
|
18800
|
-
readonly relatedList?: boolean | undefined;
|
|
18590
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
18801
18591
|
readonly relatedListTitle?: string | undefined;
|
|
18802
18592
|
readonly relatedListColumns?: any[] | undefined;
|
|
18803
18593
|
readonly displayField?: string | undefined;
|
|
@@ -18971,7 +18761,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18971
18761
|
readonly inlineTitle?: string | undefined;
|
|
18972
18762
|
readonly inlineColumns?: any[] | undefined;
|
|
18973
18763
|
readonly inlineAmountField?: string | undefined;
|
|
18974
|
-
readonly relatedList?: boolean | undefined;
|
|
18764
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
18975
18765
|
readonly relatedListTitle?: string | undefined;
|
|
18976
18766
|
readonly relatedListColumns?: any[] | undefined;
|
|
18977
18767
|
readonly displayField?: string | undefined;
|
|
@@ -19145,7 +18935,7 @@ declare const HttpDelivery: Omit<{
|
|
|
19145
18935
|
readonly inlineTitle?: string | undefined;
|
|
19146
18936
|
readonly inlineColumns?: any[] | undefined;
|
|
19147
18937
|
readonly inlineAmountField?: string | undefined;
|
|
19148
|
-
readonly relatedList?: boolean | undefined;
|
|
18938
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
19149
18939
|
readonly relatedListTitle?: string | undefined;
|
|
19150
18940
|
readonly relatedListColumns?: any[] | undefined;
|
|
19151
18941
|
readonly displayField?: string | undefined;
|
|
@@ -19319,7 +19109,7 @@ declare const HttpDelivery: Omit<{
|
|
|
19319
19109
|
readonly inlineTitle?: string | undefined;
|
|
19320
19110
|
readonly inlineColumns?: any[] | undefined;
|
|
19321
19111
|
readonly inlineAmountField?: string | undefined;
|
|
19322
|
-
readonly relatedList?: boolean | undefined;
|
|
19112
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
19323
19113
|
readonly relatedListTitle?: string | undefined;
|
|
19324
19114
|
readonly relatedListColumns?: any[] | undefined;
|
|
19325
19115
|
readonly displayField?: string | undefined;
|
|
@@ -19493,7 +19283,7 @@ declare const HttpDelivery: Omit<{
|
|
|
19493
19283
|
readonly inlineTitle?: string | undefined;
|
|
19494
19284
|
readonly inlineColumns?: any[] | undefined;
|
|
19495
19285
|
readonly inlineAmountField?: string | undefined;
|
|
19496
|
-
readonly relatedList?: boolean | undefined;
|
|
19286
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
19497
19287
|
readonly relatedListTitle?: string | undefined;
|
|
19498
19288
|
readonly relatedListColumns?: any[] | undefined;
|
|
19499
19289
|
readonly displayField?: string | undefined;
|
|
@@ -19667,7 +19457,7 @@ declare const HttpDelivery: Omit<{
|
|
|
19667
19457
|
readonly inlineTitle?: string | undefined;
|
|
19668
19458
|
readonly inlineColumns?: any[] | undefined;
|
|
19669
19459
|
readonly inlineAmountField?: string | undefined;
|
|
19670
|
-
readonly relatedList?: boolean | undefined;
|
|
19460
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
19671
19461
|
readonly relatedListTitle?: string | undefined;
|
|
19672
19462
|
readonly relatedListColumns?: any[] | undefined;
|
|
19673
19463
|
readonly displayField?: string | undefined;
|
|
@@ -19841,7 +19631,7 @@ declare const HttpDelivery: Omit<{
|
|
|
19841
19631
|
readonly inlineTitle?: string | undefined;
|
|
19842
19632
|
readonly inlineColumns?: any[] | undefined;
|
|
19843
19633
|
readonly inlineAmountField?: string | undefined;
|
|
19844
|
-
readonly relatedList?: boolean | undefined;
|
|
19634
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
19845
19635
|
readonly relatedListTitle?: string | undefined;
|
|
19846
19636
|
readonly relatedListColumns?: any[] | undefined;
|
|
19847
19637
|
readonly displayField?: string | undefined;
|
|
@@ -20015,7 +19805,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20015
19805
|
readonly inlineTitle?: string | undefined;
|
|
20016
19806
|
readonly inlineColumns?: any[] | undefined;
|
|
20017
19807
|
readonly inlineAmountField?: string | undefined;
|
|
20018
|
-
readonly relatedList?: boolean | undefined;
|
|
19808
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
20019
19809
|
readonly relatedListTitle?: string | undefined;
|
|
20020
19810
|
readonly relatedListColumns?: any[] | undefined;
|
|
20021
19811
|
readonly displayField?: string | undefined;
|
|
@@ -20189,7 +19979,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20189
19979
|
readonly inlineTitle?: string | undefined;
|
|
20190
19980
|
readonly inlineColumns?: any[] | undefined;
|
|
20191
19981
|
readonly inlineAmountField?: string | undefined;
|
|
20192
|
-
readonly relatedList?: boolean | undefined;
|
|
19982
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
20193
19983
|
readonly relatedListTitle?: string | undefined;
|
|
20194
19984
|
readonly relatedListColumns?: any[] | undefined;
|
|
20195
19985
|
readonly displayField?: string | undefined;
|
|
@@ -20363,7 +20153,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20363
20153
|
readonly inlineTitle?: string | undefined;
|
|
20364
20154
|
readonly inlineColumns?: any[] | undefined;
|
|
20365
20155
|
readonly inlineAmountField?: string | undefined;
|
|
20366
|
-
readonly relatedList?: boolean | undefined;
|
|
20156
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
20367
20157
|
readonly relatedListTitle?: string | undefined;
|
|
20368
20158
|
readonly relatedListColumns?: any[] | undefined;
|
|
20369
20159
|
readonly displayField?: string | undefined;
|
|
@@ -20537,7 +20327,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20537
20327
|
readonly inlineTitle?: string | undefined;
|
|
20538
20328
|
readonly inlineColumns?: any[] | undefined;
|
|
20539
20329
|
readonly inlineAmountField?: string | undefined;
|
|
20540
|
-
readonly relatedList?: boolean | undefined;
|
|
20330
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
20541
20331
|
readonly relatedListTitle?: string | undefined;
|
|
20542
20332
|
readonly relatedListColumns?: any[] | undefined;
|
|
20543
20333
|
readonly displayField?: string | undefined;
|
|
@@ -20711,7 +20501,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20711
20501
|
readonly inlineTitle?: string | undefined;
|
|
20712
20502
|
readonly inlineColumns?: any[] | undefined;
|
|
20713
20503
|
readonly inlineAmountField?: string | undefined;
|
|
20714
|
-
readonly relatedList?: boolean | undefined;
|
|
20504
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
20715
20505
|
readonly relatedListTitle?: string | undefined;
|
|
20716
20506
|
readonly relatedListColumns?: any[] | undefined;
|
|
20717
20507
|
readonly displayField?: string | undefined;
|
|
@@ -20885,7 +20675,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20885
20675
|
readonly inlineTitle?: string | undefined;
|
|
20886
20676
|
readonly inlineColumns?: any[] | undefined;
|
|
20887
20677
|
readonly inlineAmountField?: string | undefined;
|
|
20888
|
-
readonly relatedList?: boolean | undefined;
|
|
20678
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
20889
20679
|
readonly relatedListTitle?: string | undefined;
|
|
20890
20680
|
readonly relatedListColumns?: any[] | undefined;
|
|
20891
20681
|
readonly displayField?: string | undefined;
|
|
@@ -21059,7 +20849,7 @@ declare const HttpDelivery: Omit<{
|
|
|
21059
20849
|
readonly inlineTitle?: string | undefined;
|
|
21060
20850
|
readonly inlineColumns?: any[] | undefined;
|
|
21061
20851
|
readonly inlineAmountField?: string | undefined;
|
|
21062
|
-
readonly relatedList?: boolean | undefined;
|
|
20852
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
21063
20853
|
readonly relatedListTitle?: string | undefined;
|
|
21064
20854
|
readonly relatedListColumns?: any[] | undefined;
|
|
21065
20855
|
readonly displayField?: string | undefined;
|
|
@@ -21233,7 +21023,7 @@ declare const HttpDelivery: Omit<{
|
|
|
21233
21023
|
readonly inlineTitle?: string | undefined;
|
|
21234
21024
|
readonly inlineColumns?: any[] | undefined;
|
|
21235
21025
|
readonly inlineAmountField?: string | undefined;
|
|
21236
|
-
readonly relatedList?: boolean | undefined;
|
|
21026
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
21237
21027
|
readonly relatedListTitle?: string | undefined;
|
|
21238
21028
|
readonly relatedListColumns?: any[] | undefined;
|
|
21239
21029
|
readonly displayField?: string | undefined;
|
|
@@ -21407,7 +21197,7 @@ declare const HttpDelivery: Omit<{
|
|
|
21407
21197
|
readonly inlineTitle?: string | undefined;
|
|
21408
21198
|
readonly inlineColumns?: any[] | undefined;
|
|
21409
21199
|
readonly inlineAmountField?: string | undefined;
|
|
21410
|
-
readonly relatedList?: boolean | undefined;
|
|
21200
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
21411
21201
|
readonly relatedListTitle?: string | undefined;
|
|
21412
21202
|
readonly relatedListColumns?: any[] | undefined;
|
|
21413
21203
|
readonly displayField?: string | undefined;
|