@objectstack/service-messaging 11.9.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.cjs +7 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +790 -1007
- package/dist/index.d.ts +790 -1007
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
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;
|
|
@@ -1767,10 +1767,9 @@ declare const InboxMessage: Omit<{
|
|
|
1767
1767
|
} | undefined;
|
|
1768
1768
|
} | undefined;
|
|
1769
1769
|
highlightFields?: string[] | undefined;
|
|
1770
|
-
compactLayout?: string[] | undefined;
|
|
1771
1770
|
stageField?: string | false | undefined;
|
|
1772
1771
|
listViews?: Record<string, {
|
|
1773
|
-
type: "map" | "tree" | "grid" | "kanban" | "
|
|
1772
|
+
type: "map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart";
|
|
1774
1773
|
columns: string[] | {
|
|
1775
1774
|
field: string;
|
|
1776
1775
|
label?: string | undefined;
|
|
@@ -1786,8 +1785,55 @@ declare const InboxMessage: Omit<{
|
|
|
1786
1785
|
link?: boolean | undefined;
|
|
1787
1786
|
action?: string | undefined;
|
|
1788
1787
|
}[];
|
|
1789
|
-
|
|
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;
|
|
1790
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;
|
|
1791
1837
|
data?: {
|
|
1792
1838
|
provider: "object";
|
|
1793
1839
|
object: string;
|
|
@@ -1815,77 +1861,42 @@ declare const InboxMessage: Omit<{
|
|
|
1815
1861
|
schemaId: string;
|
|
1816
1862
|
schema?: Record<string, unknown> | undefined;
|
|
1817
1863
|
} | undefined;
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
field: string;
|
|
1825
|
-
order: "asc" | "desc";
|
|
1826
|
-
}[] | undefined;
|
|
1827
|
-
searchableFields?: string[] | undefined;
|
|
1828
|
-
filterableFields?: string[] | undefined;
|
|
1829
|
-
userFilters?: {
|
|
1830
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
1831
|
-
fields?: {
|
|
1832
|
-
field: string;
|
|
1833
|
-
label?: string | undefined;
|
|
1834
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
1835
|
-
options?: {
|
|
1836
|
-
value: string | number | boolean;
|
|
1837
|
-
label: string;
|
|
1838
|
-
color?: string | undefined;
|
|
1839
|
-
}[] | undefined;
|
|
1840
|
-
showCount?: boolean | undefined;
|
|
1841
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
1842
|
-
}[] | undefined;
|
|
1843
|
-
tabs?: {
|
|
1844
|
-
name: string;
|
|
1845
|
-
pinned: boolean;
|
|
1846
|
-
isDefault: boolean;
|
|
1847
|
-
visible: boolean;
|
|
1848
|
-
label?: string | undefined;
|
|
1849
|
-
icon?: string | undefined;
|
|
1850
|
-
view?: string | undefined;
|
|
1851
|
-
filter?: {
|
|
1852
|
-
field: string;
|
|
1853
|
-
operator: string;
|
|
1854
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
1855
|
-
}[] | undefined;
|
|
1856
|
-
order?: number | undefined;
|
|
1857
|
-
}[] | undefined;
|
|
1858
|
-
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;
|
|
1859
1870
|
} | undefined;
|
|
1871
|
+
inlineEdit?: boolean | undefined;
|
|
1872
|
+
virtualScroll?: boolean | undefined;
|
|
1860
1873
|
resizable?: boolean | undefined;
|
|
1861
|
-
striped?: boolean | undefined;
|
|
1862
|
-
bordered?: boolean | undefined;
|
|
1863
|
-
compactToolbar?: boolean | undefined;
|
|
1864
|
-
selection?: {
|
|
1865
|
-
type: "none" | "multiple" | "single";
|
|
1866
|
-
} | undefined;
|
|
1867
|
-
navigation?: {
|
|
1868
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
1869
|
-
preventNavigation: boolean;
|
|
1870
|
-
openNewTab: boolean;
|
|
1871
|
-
view?: string | undefined;
|
|
1872
|
-
width?: string | number | undefined;
|
|
1873
|
-
} | undefined;
|
|
1874
|
-
pagination?: {
|
|
1875
|
-
pageSize: number;
|
|
1876
|
-
pageSizeOptions?: number[] | undefined;
|
|
1877
|
-
} | undefined;
|
|
1878
1874
|
kanban?: {
|
|
1879
1875
|
groupByField: string;
|
|
1880
1876
|
columns: string[];
|
|
1881
1877
|
summarizeField?: string | undefined;
|
|
1882
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;
|
|
1883
1886
|
calendar?: {
|
|
1884
1887
|
startDateField: string;
|
|
1885
1888
|
titleField: string;
|
|
1886
1889
|
endDateField?: string | undefined;
|
|
1887
1890
|
colorField?: string | undefined;
|
|
1888
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;
|
|
1889
1900
|
gantt?: {
|
|
1890
1901
|
[x: string]: unknown;
|
|
1891
1902
|
startDateField: string;
|
|
@@ -1917,40 +1928,40 @@ declare const InboxMessage: Omit<{
|
|
|
1917
1928
|
}[] | undefined;
|
|
1918
1929
|
autoZoomToFilter?: boolean | undefined;
|
|
1919
1930
|
} | undefined;
|
|
1920
|
-
gallery?: {
|
|
1921
|
-
coverFit: "cover" | "contain";
|
|
1922
|
-
cardSize: "small" | "medium" | "large";
|
|
1923
|
-
coverField?: string | undefined;
|
|
1924
|
-
titleField?: string | undefined;
|
|
1925
|
-
visibleFields?: string[] | undefined;
|
|
1926
|
-
} | undefined;
|
|
1927
|
-
timeline?: {
|
|
1928
|
-
startDateField: string;
|
|
1929
|
-
titleField: string;
|
|
1930
|
-
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
1931
|
-
endDateField?: string | undefined;
|
|
1932
|
-
groupByField?: string | undefined;
|
|
1933
|
-
colorField?: string | undefined;
|
|
1934
|
-
} | undefined;
|
|
1935
1931
|
chart?: {
|
|
1936
1932
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
1937
1933
|
dataset: string;
|
|
1938
1934
|
values: string[];
|
|
1939
1935
|
dimensions?: string[] | undefined;
|
|
1940
1936
|
} | undefined;
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
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";
|
|
1947
1960
|
} | undefined;
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
lockedBy?: string | undefined;
|
|
1961
|
+
pagination?: {
|
|
1962
|
+
pageSize: number;
|
|
1963
|
+
pageSizeOptions?: number[] | undefined;
|
|
1952
1964
|
} | undefined;
|
|
1953
|
-
rowHeight?: "short" | "medium" | "compact" | "tall" | "extra_tall" | undefined;
|
|
1954
1965
|
grouping?: {
|
|
1955
1966
|
fields: {
|
|
1956
1967
|
field: string;
|
|
@@ -1967,7 +1978,6 @@ declare const InboxMessage: Omit<{
|
|
|
1967
1978
|
rowActions?: string[] | undefined;
|
|
1968
1979
|
bulkActions?: string[] | undefined;
|
|
1969
1980
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
1970
|
-
virtualScroll?: boolean | undefined;
|
|
1971
1981
|
conditionalFormatting?: {
|
|
1972
1982
|
condition: {
|
|
1973
1983
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -1988,7 +1998,6 @@ declare const InboxMessage: Omit<{
|
|
|
1988
1998
|
};
|
|
1989
1999
|
style: Record<string, string>;
|
|
1990
2000
|
}[] | undefined;
|
|
1991
|
-
inlineEdit?: boolean | undefined;
|
|
1992
2001
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
1993
2002
|
userActions?: {
|
|
1994
2003
|
sort: boolean;
|
|
@@ -2001,23 +2010,8 @@ declare const InboxMessage: Omit<{
|
|
|
2001
2010
|
} | undefined;
|
|
2002
2011
|
appearance?: {
|
|
2003
2012
|
showDescription: boolean;
|
|
2004
|
-
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "
|
|
2013
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
2005
2014
|
} | undefined;
|
|
2006
|
-
tabs?: {
|
|
2007
|
-
name: string;
|
|
2008
|
-
pinned: boolean;
|
|
2009
|
-
isDefault: boolean;
|
|
2010
|
-
visible: boolean;
|
|
2011
|
-
label?: string | undefined;
|
|
2012
|
-
icon?: string | undefined;
|
|
2013
|
-
view?: string | undefined;
|
|
2014
|
-
filter?: {
|
|
2015
|
-
field: string;
|
|
2016
|
-
operator: string;
|
|
2017
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
2018
|
-
}[] | undefined;
|
|
2019
|
-
order?: number | undefined;
|
|
2020
|
-
}[] | undefined;
|
|
2021
2015
|
addRecord?: {
|
|
2022
2016
|
enabled: boolean;
|
|
2023
2017
|
position: "top" | "bottom" | "both";
|
|
@@ -2031,31 +2025,6 @@ declare const InboxMessage: Omit<{
|
|
|
2031
2025
|
message?: string | undefined;
|
|
2032
2026
|
icon?: string | undefined;
|
|
2033
2027
|
} | undefined;
|
|
2034
|
-
aria?: {
|
|
2035
|
-
ariaLabel?: string | undefined;
|
|
2036
|
-
ariaDescribedBy?: string | undefined;
|
|
2037
|
-
role?: string | undefined;
|
|
2038
|
-
} | undefined;
|
|
2039
|
-
responsive?: {
|
|
2040
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
2041
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
2042
|
-
columns?: {
|
|
2043
|
-
xs?: number | undefined;
|
|
2044
|
-
sm?: number | undefined;
|
|
2045
|
-
md?: number | undefined;
|
|
2046
|
-
lg?: number | undefined;
|
|
2047
|
-
xl?: number | undefined;
|
|
2048
|
-
'2xl'?: number | undefined;
|
|
2049
|
-
} | undefined;
|
|
2050
|
-
order?: {
|
|
2051
|
-
xs?: number | undefined;
|
|
2052
|
-
sm?: number | undefined;
|
|
2053
|
-
md?: number | undefined;
|
|
2054
|
-
lg?: number | undefined;
|
|
2055
|
-
xl?: number | undefined;
|
|
2056
|
-
'2xl'?: number | undefined;
|
|
2057
|
-
} | undefined;
|
|
2058
|
-
} | undefined;
|
|
2059
2028
|
performance?: {
|
|
2060
2029
|
lazyLoad?: boolean | undefined;
|
|
2061
2030
|
virtualScroll?: {
|
|
@@ -2214,7 +2183,7 @@ declare const InboxMessage: Omit<{
|
|
|
2214
2183
|
readonly description: "User-facing in-app notification rows materialized by the inbox messaging channel.";
|
|
2215
2184
|
readonly nameField: "title";
|
|
2216
2185
|
readonly titleFormat: "{title}";
|
|
2217
|
-
readonly
|
|
2186
|
+
readonly highlightFields: ["title", "user_id", "severity", "created_at"];
|
|
2218
2187
|
readonly listViews: {
|
|
2219
2188
|
readonly mine: {
|
|
2220
2189
|
readonly type: "grid";
|
|
@@ -2283,7 +2252,7 @@ declare const InboxMessage: Omit<{
|
|
|
2283
2252
|
readonly inlineTitle?: string | undefined;
|
|
2284
2253
|
readonly inlineColumns?: any[] | undefined;
|
|
2285
2254
|
readonly inlineAmountField?: string | undefined;
|
|
2286
|
-
readonly relatedList?: boolean | undefined;
|
|
2255
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2287
2256
|
readonly relatedListTitle?: string | undefined;
|
|
2288
2257
|
readonly relatedListColumns?: any[] | undefined;
|
|
2289
2258
|
readonly displayField?: string | undefined;
|
|
@@ -2457,7 +2426,7 @@ declare const InboxMessage: Omit<{
|
|
|
2457
2426
|
readonly inlineTitle?: string | undefined;
|
|
2458
2427
|
readonly inlineColumns?: any[] | undefined;
|
|
2459
2428
|
readonly inlineAmountField?: string | undefined;
|
|
2460
|
-
readonly relatedList?: boolean | undefined;
|
|
2429
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2461
2430
|
readonly relatedListTitle?: string | undefined;
|
|
2462
2431
|
readonly relatedListColumns?: any[] | undefined;
|
|
2463
2432
|
readonly displayField?: string | undefined;
|
|
@@ -2631,7 +2600,7 @@ declare const InboxMessage: Omit<{
|
|
|
2631
2600
|
readonly inlineTitle?: string | undefined;
|
|
2632
2601
|
readonly inlineColumns?: any[] | undefined;
|
|
2633
2602
|
readonly inlineAmountField?: string | undefined;
|
|
2634
|
-
readonly relatedList?: boolean | undefined;
|
|
2603
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2635
2604
|
readonly relatedListTitle?: string | undefined;
|
|
2636
2605
|
readonly relatedListColumns?: any[] | undefined;
|
|
2637
2606
|
readonly displayField?: string | undefined;
|
|
@@ -2805,7 +2774,7 @@ declare const InboxMessage: Omit<{
|
|
|
2805
2774
|
readonly inlineTitle?: string | undefined;
|
|
2806
2775
|
readonly inlineColumns?: any[] | undefined;
|
|
2807
2776
|
readonly inlineAmountField?: string | undefined;
|
|
2808
|
-
readonly relatedList?: boolean | undefined;
|
|
2777
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2809
2778
|
readonly relatedListTitle?: string | undefined;
|
|
2810
2779
|
readonly relatedListColumns?: any[] | undefined;
|
|
2811
2780
|
readonly displayField?: string | undefined;
|
|
@@ -2979,7 +2948,7 @@ declare const InboxMessage: Omit<{
|
|
|
2979
2948
|
readonly inlineTitle?: string | undefined;
|
|
2980
2949
|
readonly inlineColumns?: any[] | undefined;
|
|
2981
2950
|
readonly inlineAmountField?: string | undefined;
|
|
2982
|
-
readonly relatedList?: boolean | undefined;
|
|
2951
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2983
2952
|
readonly relatedListTitle?: string | undefined;
|
|
2984
2953
|
readonly relatedListColumns?: any[] | undefined;
|
|
2985
2954
|
readonly displayField?: string | undefined;
|
|
@@ -3153,7 +3122,7 @@ declare const InboxMessage: Omit<{
|
|
|
3153
3122
|
readonly inlineTitle?: string | undefined;
|
|
3154
3123
|
readonly inlineColumns?: any[] | undefined;
|
|
3155
3124
|
readonly inlineAmountField?: string | undefined;
|
|
3156
|
-
readonly relatedList?: boolean | undefined;
|
|
3125
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3157
3126
|
readonly relatedListTitle?: string | undefined;
|
|
3158
3127
|
readonly relatedListColumns?: any[] | undefined;
|
|
3159
3128
|
readonly displayField?: string | undefined;
|
|
@@ -3327,7 +3296,7 @@ declare const InboxMessage: Omit<{
|
|
|
3327
3296
|
readonly inlineTitle?: string | undefined;
|
|
3328
3297
|
readonly inlineColumns?: any[] | undefined;
|
|
3329
3298
|
readonly inlineAmountField?: string | undefined;
|
|
3330
|
-
readonly relatedList?: boolean | undefined;
|
|
3299
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3331
3300
|
readonly relatedListTitle?: string | undefined;
|
|
3332
3301
|
readonly relatedListColumns?: any[] | undefined;
|
|
3333
3302
|
readonly displayField?: string | undefined;
|
|
@@ -3501,7 +3470,7 @@ declare const InboxMessage: Omit<{
|
|
|
3501
3470
|
readonly inlineTitle?: string | undefined;
|
|
3502
3471
|
readonly inlineColumns?: any[] | undefined;
|
|
3503
3472
|
readonly inlineAmountField?: string | undefined;
|
|
3504
|
-
readonly relatedList?: boolean | undefined;
|
|
3473
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3505
3474
|
readonly relatedListTitle?: string | undefined;
|
|
3506
3475
|
readonly relatedListColumns?: any[] | undefined;
|
|
3507
3476
|
readonly displayField?: string | undefined;
|
|
@@ -3675,7 +3644,7 @@ declare const InboxMessage: Omit<{
|
|
|
3675
3644
|
readonly inlineTitle?: string | undefined;
|
|
3676
3645
|
readonly inlineColumns?: any[] | undefined;
|
|
3677
3646
|
readonly inlineAmountField?: string | undefined;
|
|
3678
|
-
readonly relatedList?: boolean | undefined;
|
|
3647
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3679
3648
|
readonly relatedListTitle?: string | undefined;
|
|
3680
3649
|
readonly relatedListColumns?: any[] | undefined;
|
|
3681
3650
|
readonly displayField?: string | undefined;
|
|
@@ -3849,7 +3818,7 @@ declare const InboxMessage: Omit<{
|
|
|
3849
3818
|
readonly inlineTitle?: string | undefined;
|
|
3850
3819
|
readonly inlineColumns?: any[] | undefined;
|
|
3851
3820
|
readonly inlineAmountField?: string | undefined;
|
|
3852
|
-
readonly relatedList?: boolean | undefined;
|
|
3821
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3853
3822
|
readonly relatedListTitle?: string | undefined;
|
|
3854
3823
|
readonly relatedListColumns?: any[] | undefined;
|
|
3855
3824
|
readonly displayField?: string | undefined;
|
|
@@ -4046,7 +4015,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4046
4015
|
inlineTitle?: string | undefined;
|
|
4047
4016
|
inlineColumns?: any[] | undefined;
|
|
4048
4017
|
inlineAmountField?: string | undefined;
|
|
4049
|
-
relatedList?: boolean | undefined;
|
|
4018
|
+
relatedList?: boolean | "primary" | undefined;
|
|
4050
4019
|
relatedListTitle?: string | undefined;
|
|
4051
4020
|
relatedListColumns?: any[] | undefined;
|
|
4052
4021
|
displayField?: string | undefined;
|
|
@@ -4327,10 +4296,9 @@ declare const NotificationReceipt: Omit<{
|
|
|
4327
4296
|
} | undefined;
|
|
4328
4297
|
} | undefined;
|
|
4329
4298
|
highlightFields?: string[] | undefined;
|
|
4330
|
-
compactLayout?: string[] | undefined;
|
|
4331
4299
|
stageField?: string | false | undefined;
|
|
4332
4300
|
listViews?: Record<string, {
|
|
4333
|
-
type: "map" | "tree" | "grid" | "kanban" | "
|
|
4301
|
+
type: "map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart";
|
|
4334
4302
|
columns: string[] | {
|
|
4335
4303
|
field: string;
|
|
4336
4304
|
label?: string | undefined;
|
|
@@ -4346,8 +4314,55 @@ declare const NotificationReceipt: Omit<{
|
|
|
4346
4314
|
link?: boolean | undefined;
|
|
4347
4315
|
action?: string | undefined;
|
|
4348
4316
|
}[];
|
|
4349
|
-
|
|
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;
|
|
4350
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;
|
|
4351
4366
|
data?: {
|
|
4352
4367
|
provider: "object";
|
|
4353
4368
|
object: string;
|
|
@@ -4375,77 +4390,42 @@ declare const NotificationReceipt: Omit<{
|
|
|
4375
4390
|
schemaId: string;
|
|
4376
4391
|
schema?: Record<string, unknown> | undefined;
|
|
4377
4392
|
} | undefined;
|
|
4378
|
-
|
|
4379
|
-
|
|
4380
|
-
|
|
4381
|
-
|
|
4382
|
-
|
|
4383
|
-
|
|
4384
|
-
field: string;
|
|
4385
|
-
order: "asc" | "desc";
|
|
4386
|
-
}[] | undefined;
|
|
4387
|
-
searchableFields?: string[] | undefined;
|
|
4388
|
-
filterableFields?: string[] | undefined;
|
|
4389
|
-
userFilters?: {
|
|
4390
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
4391
|
-
fields?: {
|
|
4392
|
-
field: string;
|
|
4393
|
-
label?: string | undefined;
|
|
4394
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
4395
|
-
options?: {
|
|
4396
|
-
value: string | number | boolean;
|
|
4397
|
-
label: string;
|
|
4398
|
-
color?: string | undefined;
|
|
4399
|
-
}[] | undefined;
|
|
4400
|
-
showCount?: boolean | undefined;
|
|
4401
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
4402
|
-
}[] | undefined;
|
|
4403
|
-
tabs?: {
|
|
4404
|
-
name: string;
|
|
4405
|
-
pinned: boolean;
|
|
4406
|
-
isDefault: boolean;
|
|
4407
|
-
visible: boolean;
|
|
4408
|
-
label?: string | undefined;
|
|
4409
|
-
icon?: string | undefined;
|
|
4410
|
-
view?: string | undefined;
|
|
4411
|
-
filter?: {
|
|
4412
|
-
field: string;
|
|
4413
|
-
operator: string;
|
|
4414
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
4415
|
-
}[] | undefined;
|
|
4416
|
-
order?: number | undefined;
|
|
4417
|
-
}[] | undefined;
|
|
4418
|
-
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;
|
|
4419
4399
|
} | undefined;
|
|
4400
|
+
inlineEdit?: boolean | undefined;
|
|
4401
|
+
virtualScroll?: boolean | undefined;
|
|
4420
4402
|
resizable?: boolean | undefined;
|
|
4421
|
-
striped?: boolean | undefined;
|
|
4422
|
-
bordered?: boolean | undefined;
|
|
4423
|
-
compactToolbar?: boolean | undefined;
|
|
4424
|
-
selection?: {
|
|
4425
|
-
type: "none" | "multiple" | "single";
|
|
4426
|
-
} | undefined;
|
|
4427
|
-
navigation?: {
|
|
4428
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
4429
|
-
preventNavigation: boolean;
|
|
4430
|
-
openNewTab: boolean;
|
|
4431
|
-
view?: string | undefined;
|
|
4432
|
-
width?: string | number | undefined;
|
|
4433
|
-
} | undefined;
|
|
4434
|
-
pagination?: {
|
|
4435
|
-
pageSize: number;
|
|
4436
|
-
pageSizeOptions?: number[] | undefined;
|
|
4437
|
-
} | undefined;
|
|
4438
4403
|
kanban?: {
|
|
4439
4404
|
groupByField: string;
|
|
4440
4405
|
columns: string[];
|
|
4441
4406
|
summarizeField?: string | undefined;
|
|
4442
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;
|
|
4443
4415
|
calendar?: {
|
|
4444
4416
|
startDateField: string;
|
|
4445
4417
|
titleField: string;
|
|
4446
4418
|
endDateField?: string | undefined;
|
|
4447
4419
|
colorField?: string | undefined;
|
|
4448
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;
|
|
4449
4429
|
gantt?: {
|
|
4450
4430
|
[x: string]: unknown;
|
|
4451
4431
|
startDateField: string;
|
|
@@ -4477,40 +4457,40 @@ declare const NotificationReceipt: Omit<{
|
|
|
4477
4457
|
}[] | undefined;
|
|
4478
4458
|
autoZoomToFilter?: boolean | undefined;
|
|
4479
4459
|
} | undefined;
|
|
4480
|
-
gallery?: {
|
|
4481
|
-
coverFit: "cover" | "contain";
|
|
4482
|
-
cardSize: "small" | "medium" | "large";
|
|
4483
|
-
coverField?: string | undefined;
|
|
4484
|
-
titleField?: string | undefined;
|
|
4485
|
-
visibleFields?: string[] | undefined;
|
|
4486
|
-
} | undefined;
|
|
4487
|
-
timeline?: {
|
|
4488
|
-
startDateField: string;
|
|
4489
|
-
titleField: string;
|
|
4490
|
-
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
4491
|
-
endDateField?: string | undefined;
|
|
4492
|
-
groupByField?: string | undefined;
|
|
4493
|
-
colorField?: string | undefined;
|
|
4494
|
-
} | undefined;
|
|
4495
4460
|
chart?: {
|
|
4496
4461
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
4497
4462
|
dataset: string;
|
|
4498
4463
|
values: string[];
|
|
4499
4464
|
dimensions?: string[] | undefined;
|
|
4500
4465
|
} | undefined;
|
|
4501
|
-
|
|
4502
|
-
|
|
4503
|
-
|
|
4504
|
-
|
|
4505
|
-
|
|
4506
|
-
|
|
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";
|
|
4507
4489
|
} | undefined;
|
|
4508
|
-
|
|
4509
|
-
|
|
4510
|
-
|
|
4511
|
-
lockedBy?: string | undefined;
|
|
4490
|
+
pagination?: {
|
|
4491
|
+
pageSize: number;
|
|
4492
|
+
pageSizeOptions?: number[] | undefined;
|
|
4512
4493
|
} | undefined;
|
|
4513
|
-
rowHeight?: "short" | "medium" | "compact" | "tall" | "extra_tall" | undefined;
|
|
4514
4494
|
grouping?: {
|
|
4515
4495
|
fields: {
|
|
4516
4496
|
field: string;
|
|
@@ -4527,7 +4507,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
4527
4507
|
rowActions?: string[] | undefined;
|
|
4528
4508
|
bulkActions?: string[] | undefined;
|
|
4529
4509
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
4530
|
-
virtualScroll?: boolean | undefined;
|
|
4531
4510
|
conditionalFormatting?: {
|
|
4532
4511
|
condition: {
|
|
4533
4512
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -4548,7 +4527,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
4548
4527
|
};
|
|
4549
4528
|
style: Record<string, string>;
|
|
4550
4529
|
}[] | undefined;
|
|
4551
|
-
inlineEdit?: boolean | undefined;
|
|
4552
4530
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
4553
4531
|
userActions?: {
|
|
4554
4532
|
sort: boolean;
|
|
@@ -4561,23 +4539,8 @@ declare const NotificationReceipt: Omit<{
|
|
|
4561
4539
|
} | undefined;
|
|
4562
4540
|
appearance?: {
|
|
4563
4541
|
showDescription: boolean;
|
|
4564
|
-
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "
|
|
4542
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
4565
4543
|
} | undefined;
|
|
4566
|
-
tabs?: {
|
|
4567
|
-
name: string;
|
|
4568
|
-
pinned: boolean;
|
|
4569
|
-
isDefault: boolean;
|
|
4570
|
-
visible: boolean;
|
|
4571
|
-
label?: string | undefined;
|
|
4572
|
-
icon?: string | undefined;
|
|
4573
|
-
view?: string | undefined;
|
|
4574
|
-
filter?: {
|
|
4575
|
-
field: string;
|
|
4576
|
-
operator: string;
|
|
4577
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
4578
|
-
}[] | undefined;
|
|
4579
|
-
order?: number | undefined;
|
|
4580
|
-
}[] | undefined;
|
|
4581
4544
|
addRecord?: {
|
|
4582
4545
|
enabled: boolean;
|
|
4583
4546
|
position: "top" | "bottom" | "both";
|
|
@@ -4591,31 +4554,6 @@ declare const NotificationReceipt: Omit<{
|
|
|
4591
4554
|
message?: string | undefined;
|
|
4592
4555
|
icon?: string | undefined;
|
|
4593
4556
|
} | undefined;
|
|
4594
|
-
aria?: {
|
|
4595
|
-
ariaLabel?: string | undefined;
|
|
4596
|
-
ariaDescribedBy?: string | undefined;
|
|
4597
|
-
role?: string | undefined;
|
|
4598
|
-
} | undefined;
|
|
4599
|
-
responsive?: {
|
|
4600
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
4601
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
4602
|
-
columns?: {
|
|
4603
|
-
xs?: number | undefined;
|
|
4604
|
-
sm?: number | undefined;
|
|
4605
|
-
md?: number | undefined;
|
|
4606
|
-
lg?: number | undefined;
|
|
4607
|
-
xl?: number | undefined;
|
|
4608
|
-
'2xl'?: number | undefined;
|
|
4609
|
-
} | undefined;
|
|
4610
|
-
order?: {
|
|
4611
|
-
xs?: number | undefined;
|
|
4612
|
-
sm?: number | undefined;
|
|
4613
|
-
md?: number | undefined;
|
|
4614
|
-
lg?: number | undefined;
|
|
4615
|
-
xl?: number | undefined;
|
|
4616
|
-
'2xl'?: number | undefined;
|
|
4617
|
-
} | undefined;
|
|
4618
|
-
} | undefined;
|
|
4619
4557
|
performance?: {
|
|
4620
4558
|
lazyLoad?: boolean | undefined;
|
|
4621
4559
|
virtualScroll?: {
|
|
@@ -4775,7 +4713,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4775
4713
|
readonly managedBy: "system";
|
|
4776
4714
|
readonly description: "Per-recipient × channel receipt; the source of truth for notification read-state.";
|
|
4777
4715
|
readonly titleFormat: "{state}";
|
|
4778
|
-
readonly
|
|
4716
|
+
readonly highlightFields: ["notification_id", "user_id", "channel", "state", "at"];
|
|
4779
4717
|
readonly fields: {
|
|
4780
4718
|
readonly id: {
|
|
4781
4719
|
readonly readonly?: boolean | undefined;
|
|
@@ -4816,7 +4754,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4816
4754
|
readonly inlineTitle?: string | undefined;
|
|
4817
4755
|
readonly inlineColumns?: any[] | undefined;
|
|
4818
4756
|
readonly inlineAmountField?: string | undefined;
|
|
4819
|
-
readonly relatedList?: boolean | undefined;
|
|
4757
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4820
4758
|
readonly relatedListTitle?: string | undefined;
|
|
4821
4759
|
readonly relatedListColumns?: any[] | undefined;
|
|
4822
4760
|
readonly displayField?: string | undefined;
|
|
@@ -4990,7 +4928,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
4990
4928
|
readonly inlineTitle?: string | undefined;
|
|
4991
4929
|
readonly inlineColumns?: any[] | undefined;
|
|
4992
4930
|
readonly inlineAmountField?: string | undefined;
|
|
4993
|
-
readonly relatedList?: boolean | undefined;
|
|
4931
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4994
4932
|
readonly relatedListTitle?: string | undefined;
|
|
4995
4933
|
readonly relatedListColumns?: any[] | undefined;
|
|
4996
4934
|
readonly displayField?: string | undefined;
|
|
@@ -5164,7 +5102,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
5164
5102
|
readonly inlineTitle?: string | undefined;
|
|
5165
5103
|
readonly inlineColumns?: any[] | undefined;
|
|
5166
5104
|
readonly inlineAmountField?: string | undefined;
|
|
5167
|
-
readonly relatedList?: boolean | undefined;
|
|
5105
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5168
5106
|
readonly relatedListTitle?: string | undefined;
|
|
5169
5107
|
readonly relatedListColumns?: any[] | undefined;
|
|
5170
5108
|
readonly displayField?: string | undefined;
|
|
@@ -5338,7 +5276,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
5338
5276
|
readonly inlineTitle?: string | undefined;
|
|
5339
5277
|
readonly inlineColumns?: any[] | undefined;
|
|
5340
5278
|
readonly inlineAmountField?: string | undefined;
|
|
5341
|
-
readonly relatedList?: boolean | undefined;
|
|
5279
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5342
5280
|
readonly relatedListTitle?: string | undefined;
|
|
5343
5281
|
readonly relatedListColumns?: any[] | undefined;
|
|
5344
5282
|
readonly displayField?: string | undefined;
|
|
@@ -5512,7 +5450,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
5512
5450
|
readonly inlineTitle?: string | undefined;
|
|
5513
5451
|
readonly inlineColumns?: any[] | undefined;
|
|
5514
5452
|
readonly inlineAmountField?: string | undefined;
|
|
5515
|
-
readonly relatedList?: boolean | undefined;
|
|
5453
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5516
5454
|
readonly relatedListTitle?: string | undefined;
|
|
5517
5455
|
readonly relatedListColumns?: any[] | undefined;
|
|
5518
5456
|
readonly displayField?: string | undefined;
|
|
@@ -5686,7 +5624,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
5686
5624
|
readonly inlineTitle?: string | undefined;
|
|
5687
5625
|
readonly inlineColumns?: any[] | undefined;
|
|
5688
5626
|
readonly inlineAmountField?: string | undefined;
|
|
5689
|
-
readonly relatedList?: boolean | undefined;
|
|
5627
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5690
5628
|
readonly relatedListTitle?: string | undefined;
|
|
5691
5629
|
readonly relatedListColumns?: any[] | undefined;
|
|
5692
5630
|
readonly displayField?: string | undefined;
|
|
@@ -5860,7 +5798,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
5860
5798
|
readonly inlineTitle?: string | undefined;
|
|
5861
5799
|
readonly inlineColumns?: any[] | undefined;
|
|
5862
5800
|
readonly inlineAmountField?: string | undefined;
|
|
5863
|
-
readonly relatedList?: boolean | undefined;
|
|
5801
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5864
5802
|
readonly relatedListTitle?: string | undefined;
|
|
5865
5803
|
readonly relatedListColumns?: any[] | undefined;
|
|
5866
5804
|
readonly displayField?: string | undefined;
|
|
@@ -6034,7 +5972,7 @@ declare const NotificationReceipt: Omit<{
|
|
|
6034
5972
|
readonly inlineTitle?: string | undefined;
|
|
6035
5973
|
readonly inlineColumns?: any[] | undefined;
|
|
6036
5974
|
readonly inlineAmountField?: string | undefined;
|
|
6037
|
-
readonly relatedList?: boolean | undefined;
|
|
5975
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6038
5976
|
readonly relatedListTitle?: string | undefined;
|
|
6039
5977
|
readonly relatedListColumns?: any[] | undefined;
|
|
6040
5978
|
readonly displayField?: string | undefined;
|
|
@@ -6235,7 +6173,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6235
6173
|
inlineTitle?: string | undefined;
|
|
6236
6174
|
inlineColumns?: any[] | undefined;
|
|
6237
6175
|
inlineAmountField?: string | undefined;
|
|
6238
|
-
relatedList?: boolean | undefined;
|
|
6176
|
+
relatedList?: boolean | "primary" | undefined;
|
|
6239
6177
|
relatedListTitle?: string | undefined;
|
|
6240
6178
|
relatedListColumns?: any[] | undefined;
|
|
6241
6179
|
displayField?: string | undefined;
|
|
@@ -6516,10 +6454,9 @@ declare const NotificationDelivery: Omit<{
|
|
|
6516
6454
|
} | undefined;
|
|
6517
6455
|
} | undefined;
|
|
6518
6456
|
highlightFields?: string[] | undefined;
|
|
6519
|
-
compactLayout?: string[] | undefined;
|
|
6520
6457
|
stageField?: string | false | undefined;
|
|
6521
6458
|
listViews?: Record<string, {
|
|
6522
|
-
type: "map" | "tree" | "grid" | "kanban" | "
|
|
6459
|
+
type: "map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart";
|
|
6523
6460
|
columns: string[] | {
|
|
6524
6461
|
field: string;
|
|
6525
6462
|
label?: string | undefined;
|
|
@@ -6535,8 +6472,55 @@ declare const NotificationDelivery: Omit<{
|
|
|
6535
6472
|
link?: boolean | undefined;
|
|
6536
6473
|
action?: string | undefined;
|
|
6537
6474
|
}[];
|
|
6538
|
-
|
|
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;
|
|
6539
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;
|
|
6540
6524
|
data?: {
|
|
6541
6525
|
provider: "object";
|
|
6542
6526
|
object: string;
|
|
@@ -6564,77 +6548,42 @@ declare const NotificationDelivery: Omit<{
|
|
|
6564
6548
|
schemaId: string;
|
|
6565
6549
|
schema?: Record<string, unknown> | undefined;
|
|
6566
6550
|
} | undefined;
|
|
6567
|
-
|
|
6568
|
-
|
|
6569
|
-
|
|
6570
|
-
|
|
6571
|
-
|
|
6572
|
-
|
|
6573
|
-
field: string;
|
|
6574
|
-
order: "asc" | "desc";
|
|
6575
|
-
}[] | undefined;
|
|
6576
|
-
searchableFields?: string[] | undefined;
|
|
6577
|
-
filterableFields?: string[] | undefined;
|
|
6578
|
-
userFilters?: {
|
|
6579
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
6580
|
-
fields?: {
|
|
6581
|
-
field: string;
|
|
6582
|
-
label?: string | undefined;
|
|
6583
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
6584
|
-
options?: {
|
|
6585
|
-
value: string | number | boolean;
|
|
6586
|
-
label: string;
|
|
6587
|
-
color?: string | undefined;
|
|
6588
|
-
}[] | undefined;
|
|
6589
|
-
showCount?: boolean | undefined;
|
|
6590
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
6591
|
-
}[] | undefined;
|
|
6592
|
-
tabs?: {
|
|
6593
|
-
name: string;
|
|
6594
|
-
pinned: boolean;
|
|
6595
|
-
isDefault: boolean;
|
|
6596
|
-
visible: boolean;
|
|
6597
|
-
label?: string | undefined;
|
|
6598
|
-
icon?: string | undefined;
|
|
6599
|
-
view?: string | undefined;
|
|
6600
|
-
filter?: {
|
|
6601
|
-
field: string;
|
|
6602
|
-
operator: string;
|
|
6603
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
6604
|
-
}[] | undefined;
|
|
6605
|
-
order?: number | undefined;
|
|
6606
|
-
}[] | undefined;
|
|
6607
|
-
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;
|
|
6608
6557
|
} | undefined;
|
|
6558
|
+
inlineEdit?: boolean | undefined;
|
|
6559
|
+
virtualScroll?: boolean | undefined;
|
|
6609
6560
|
resizable?: boolean | undefined;
|
|
6610
|
-
striped?: boolean | undefined;
|
|
6611
|
-
bordered?: boolean | undefined;
|
|
6612
|
-
compactToolbar?: boolean | undefined;
|
|
6613
|
-
selection?: {
|
|
6614
|
-
type: "none" | "multiple" | "single";
|
|
6615
|
-
} | undefined;
|
|
6616
|
-
navigation?: {
|
|
6617
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
6618
|
-
preventNavigation: boolean;
|
|
6619
|
-
openNewTab: boolean;
|
|
6620
|
-
view?: string | undefined;
|
|
6621
|
-
width?: string | number | undefined;
|
|
6622
|
-
} | undefined;
|
|
6623
|
-
pagination?: {
|
|
6624
|
-
pageSize: number;
|
|
6625
|
-
pageSizeOptions?: number[] | undefined;
|
|
6626
|
-
} | undefined;
|
|
6627
6561
|
kanban?: {
|
|
6628
6562
|
groupByField: string;
|
|
6629
6563
|
columns: string[];
|
|
6630
6564
|
summarizeField?: string | undefined;
|
|
6631
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;
|
|
6632
6573
|
calendar?: {
|
|
6633
6574
|
startDateField: string;
|
|
6634
6575
|
titleField: string;
|
|
6635
6576
|
endDateField?: string | undefined;
|
|
6636
6577
|
colorField?: string | undefined;
|
|
6637
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;
|
|
6638
6587
|
gantt?: {
|
|
6639
6588
|
[x: string]: unknown;
|
|
6640
6589
|
startDateField: string;
|
|
@@ -6666,40 +6615,40 @@ declare const NotificationDelivery: Omit<{
|
|
|
6666
6615
|
}[] | undefined;
|
|
6667
6616
|
autoZoomToFilter?: boolean | undefined;
|
|
6668
6617
|
} | undefined;
|
|
6669
|
-
gallery?: {
|
|
6670
|
-
coverFit: "cover" | "contain";
|
|
6671
|
-
cardSize: "small" | "medium" | "large";
|
|
6672
|
-
coverField?: string | undefined;
|
|
6673
|
-
titleField?: string | undefined;
|
|
6674
|
-
visibleFields?: string[] | undefined;
|
|
6675
|
-
} | undefined;
|
|
6676
|
-
timeline?: {
|
|
6677
|
-
startDateField: string;
|
|
6678
|
-
titleField: string;
|
|
6679
|
-
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
6680
|
-
endDateField?: string | undefined;
|
|
6681
|
-
groupByField?: string | undefined;
|
|
6682
|
-
colorField?: string | undefined;
|
|
6683
|
-
} | undefined;
|
|
6684
6618
|
chart?: {
|
|
6685
6619
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
6686
6620
|
dataset: string;
|
|
6687
6621
|
values: string[];
|
|
6688
6622
|
dimensions?: string[] | undefined;
|
|
6689
6623
|
} | undefined;
|
|
6690
|
-
|
|
6691
|
-
|
|
6692
|
-
|
|
6693
|
-
|
|
6694
|
-
|
|
6695
|
-
|
|
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";
|
|
6696
6647
|
} | undefined;
|
|
6697
|
-
|
|
6698
|
-
|
|
6699
|
-
|
|
6700
|
-
lockedBy?: string | undefined;
|
|
6648
|
+
pagination?: {
|
|
6649
|
+
pageSize: number;
|
|
6650
|
+
pageSizeOptions?: number[] | undefined;
|
|
6701
6651
|
} | undefined;
|
|
6702
|
-
rowHeight?: "short" | "medium" | "compact" | "tall" | "extra_tall" | undefined;
|
|
6703
6652
|
grouping?: {
|
|
6704
6653
|
fields: {
|
|
6705
6654
|
field: string;
|
|
@@ -6716,7 +6665,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
6716
6665
|
rowActions?: string[] | undefined;
|
|
6717
6666
|
bulkActions?: string[] | undefined;
|
|
6718
6667
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
6719
|
-
virtualScroll?: boolean | undefined;
|
|
6720
6668
|
conditionalFormatting?: {
|
|
6721
6669
|
condition: {
|
|
6722
6670
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -6737,7 +6685,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
6737
6685
|
};
|
|
6738
6686
|
style: Record<string, string>;
|
|
6739
6687
|
}[] | undefined;
|
|
6740
|
-
inlineEdit?: boolean | undefined;
|
|
6741
6688
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
6742
6689
|
userActions?: {
|
|
6743
6690
|
sort: boolean;
|
|
@@ -6750,23 +6697,8 @@ declare const NotificationDelivery: Omit<{
|
|
|
6750
6697
|
} | undefined;
|
|
6751
6698
|
appearance?: {
|
|
6752
6699
|
showDescription: boolean;
|
|
6753
|
-
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "
|
|
6700
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
6754
6701
|
} | undefined;
|
|
6755
|
-
tabs?: {
|
|
6756
|
-
name: string;
|
|
6757
|
-
pinned: boolean;
|
|
6758
|
-
isDefault: boolean;
|
|
6759
|
-
visible: boolean;
|
|
6760
|
-
label?: string | undefined;
|
|
6761
|
-
icon?: string | undefined;
|
|
6762
|
-
view?: string | undefined;
|
|
6763
|
-
filter?: {
|
|
6764
|
-
field: string;
|
|
6765
|
-
operator: string;
|
|
6766
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
6767
|
-
}[] | undefined;
|
|
6768
|
-
order?: number | undefined;
|
|
6769
|
-
}[] | undefined;
|
|
6770
6702
|
addRecord?: {
|
|
6771
6703
|
enabled: boolean;
|
|
6772
6704
|
position: "top" | "bottom" | "both";
|
|
@@ -6780,31 +6712,6 @@ declare const NotificationDelivery: Omit<{
|
|
|
6780
6712
|
message?: string | undefined;
|
|
6781
6713
|
icon?: string | undefined;
|
|
6782
6714
|
} | undefined;
|
|
6783
|
-
aria?: {
|
|
6784
|
-
ariaLabel?: string | undefined;
|
|
6785
|
-
ariaDescribedBy?: string | undefined;
|
|
6786
|
-
role?: string | undefined;
|
|
6787
|
-
} | undefined;
|
|
6788
|
-
responsive?: {
|
|
6789
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
6790
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
6791
|
-
columns?: {
|
|
6792
|
-
xs?: number | undefined;
|
|
6793
|
-
sm?: number | undefined;
|
|
6794
|
-
md?: number | undefined;
|
|
6795
|
-
lg?: number | undefined;
|
|
6796
|
-
xl?: number | undefined;
|
|
6797
|
-
'2xl'?: number | undefined;
|
|
6798
|
-
} | undefined;
|
|
6799
|
-
order?: {
|
|
6800
|
-
xs?: number | undefined;
|
|
6801
|
-
sm?: number | undefined;
|
|
6802
|
-
md?: number | undefined;
|
|
6803
|
-
lg?: number | undefined;
|
|
6804
|
-
xl?: number | undefined;
|
|
6805
|
-
'2xl'?: number | undefined;
|
|
6806
|
-
} | undefined;
|
|
6807
|
-
} | undefined;
|
|
6808
6715
|
performance?: {
|
|
6809
6716
|
lazyLoad?: boolean | undefined;
|
|
6810
6717
|
virtualScroll?: {
|
|
@@ -6964,7 +6871,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
6964
6871
|
readonly managedBy: "system";
|
|
6965
6872
|
readonly description: "Durable per-recipient × channel delivery outbox (ADR-0030 Layer 4).";
|
|
6966
6873
|
readonly titleFormat: "{channel} → {recipient_id}";
|
|
6967
|
-
readonly
|
|
6874
|
+
readonly highlightFields: ["notification_id", "recipient_id", "channel", "status", "attempts"];
|
|
6968
6875
|
readonly fields: {
|
|
6969
6876
|
readonly id: {
|
|
6970
6877
|
readonly readonly?: boolean | undefined;
|
|
@@ -7005,7 +6912,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7005
6912
|
readonly inlineTitle?: string | undefined;
|
|
7006
6913
|
readonly inlineColumns?: any[] | undefined;
|
|
7007
6914
|
readonly inlineAmountField?: string | undefined;
|
|
7008
|
-
readonly relatedList?: boolean | undefined;
|
|
6915
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7009
6916
|
readonly relatedListTitle?: string | undefined;
|
|
7010
6917
|
readonly relatedListColumns?: any[] | undefined;
|
|
7011
6918
|
readonly displayField?: string | undefined;
|
|
@@ -7179,7 +7086,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7179
7086
|
readonly inlineTitle?: string | undefined;
|
|
7180
7087
|
readonly inlineColumns?: any[] | undefined;
|
|
7181
7088
|
readonly inlineAmountField?: string | undefined;
|
|
7182
|
-
readonly relatedList?: boolean | undefined;
|
|
7089
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7183
7090
|
readonly relatedListTitle?: string | undefined;
|
|
7184
7091
|
readonly relatedListColumns?: any[] | undefined;
|
|
7185
7092
|
readonly displayField?: string | undefined;
|
|
@@ -7353,7 +7260,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7353
7260
|
readonly inlineTitle?: string | undefined;
|
|
7354
7261
|
readonly inlineColumns?: any[] | undefined;
|
|
7355
7262
|
readonly inlineAmountField?: string | undefined;
|
|
7356
|
-
readonly relatedList?: boolean | undefined;
|
|
7263
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7357
7264
|
readonly relatedListTitle?: string | undefined;
|
|
7358
7265
|
readonly relatedListColumns?: any[] | undefined;
|
|
7359
7266
|
readonly displayField?: string | undefined;
|
|
@@ -7527,7 +7434,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7527
7434
|
readonly inlineTitle?: string | undefined;
|
|
7528
7435
|
readonly inlineColumns?: any[] | undefined;
|
|
7529
7436
|
readonly inlineAmountField?: string | undefined;
|
|
7530
|
-
readonly relatedList?: boolean | undefined;
|
|
7437
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7531
7438
|
readonly relatedListTitle?: string | undefined;
|
|
7532
7439
|
readonly relatedListColumns?: any[] | undefined;
|
|
7533
7440
|
readonly displayField?: string | undefined;
|
|
@@ -7701,7 +7608,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7701
7608
|
readonly inlineTitle?: string | undefined;
|
|
7702
7609
|
readonly inlineColumns?: any[] | undefined;
|
|
7703
7610
|
readonly inlineAmountField?: string | undefined;
|
|
7704
|
-
readonly relatedList?: boolean | undefined;
|
|
7611
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7705
7612
|
readonly relatedListTitle?: string | undefined;
|
|
7706
7613
|
readonly relatedListColumns?: any[] | undefined;
|
|
7707
7614
|
readonly displayField?: string | undefined;
|
|
@@ -7875,7 +7782,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
7875
7782
|
readonly inlineTitle?: string | undefined;
|
|
7876
7783
|
readonly inlineColumns?: any[] | undefined;
|
|
7877
7784
|
readonly inlineAmountField?: string | undefined;
|
|
7878
|
-
readonly relatedList?: boolean | undefined;
|
|
7785
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7879
7786
|
readonly relatedListTitle?: string | undefined;
|
|
7880
7787
|
readonly relatedListColumns?: any[] | undefined;
|
|
7881
7788
|
readonly displayField?: string | undefined;
|
|
@@ -8049,7 +7956,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8049
7956
|
readonly inlineTitle?: string | undefined;
|
|
8050
7957
|
readonly inlineColumns?: any[] | undefined;
|
|
8051
7958
|
readonly inlineAmountField?: string | undefined;
|
|
8052
|
-
readonly relatedList?: boolean | undefined;
|
|
7959
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8053
7960
|
readonly relatedListTitle?: string | undefined;
|
|
8054
7961
|
readonly relatedListColumns?: any[] | undefined;
|
|
8055
7962
|
readonly displayField?: string | undefined;
|
|
@@ -8223,7 +8130,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8223
8130
|
readonly inlineTitle?: string | undefined;
|
|
8224
8131
|
readonly inlineColumns?: any[] | undefined;
|
|
8225
8132
|
readonly inlineAmountField?: string | undefined;
|
|
8226
|
-
readonly relatedList?: boolean | undefined;
|
|
8133
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8227
8134
|
readonly relatedListTitle?: string | undefined;
|
|
8228
8135
|
readonly relatedListColumns?: any[] | undefined;
|
|
8229
8136
|
readonly displayField?: string | undefined;
|
|
@@ -8397,7 +8304,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8397
8304
|
readonly inlineTitle?: string | undefined;
|
|
8398
8305
|
readonly inlineColumns?: any[] | undefined;
|
|
8399
8306
|
readonly inlineAmountField?: string | undefined;
|
|
8400
|
-
readonly relatedList?: boolean | undefined;
|
|
8307
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8401
8308
|
readonly relatedListTitle?: string | undefined;
|
|
8402
8309
|
readonly relatedListColumns?: any[] | undefined;
|
|
8403
8310
|
readonly displayField?: string | undefined;
|
|
@@ -8571,7 +8478,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8571
8478
|
readonly inlineTitle?: string | undefined;
|
|
8572
8479
|
readonly inlineColumns?: any[] | undefined;
|
|
8573
8480
|
readonly inlineAmountField?: string | undefined;
|
|
8574
|
-
readonly relatedList?: boolean | undefined;
|
|
8481
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8575
8482
|
readonly relatedListTitle?: string | undefined;
|
|
8576
8483
|
readonly relatedListColumns?: any[] | undefined;
|
|
8577
8484
|
readonly displayField?: string | undefined;
|
|
@@ -8745,7 +8652,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8745
8652
|
readonly inlineTitle?: string | undefined;
|
|
8746
8653
|
readonly inlineColumns?: any[] | undefined;
|
|
8747
8654
|
readonly inlineAmountField?: string | undefined;
|
|
8748
|
-
readonly relatedList?: boolean | undefined;
|
|
8655
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8749
8656
|
readonly relatedListTitle?: string | undefined;
|
|
8750
8657
|
readonly relatedListColumns?: any[] | undefined;
|
|
8751
8658
|
readonly displayField?: string | undefined;
|
|
@@ -8919,7 +8826,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
8919
8826
|
readonly inlineTitle?: string | undefined;
|
|
8920
8827
|
readonly inlineColumns?: any[] | undefined;
|
|
8921
8828
|
readonly inlineAmountField?: string | undefined;
|
|
8922
|
-
readonly relatedList?: boolean | undefined;
|
|
8829
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8923
8830
|
readonly relatedListTitle?: string | undefined;
|
|
8924
8831
|
readonly relatedListColumns?: any[] | undefined;
|
|
8925
8832
|
readonly displayField?: string | undefined;
|
|
@@ -9093,7 +9000,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
9093
9000
|
readonly inlineTitle?: string | undefined;
|
|
9094
9001
|
readonly inlineColumns?: any[] | undefined;
|
|
9095
9002
|
readonly inlineAmountField?: string | undefined;
|
|
9096
|
-
readonly relatedList?: boolean | undefined;
|
|
9003
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
9097
9004
|
readonly relatedListTitle?: string | undefined;
|
|
9098
9005
|
readonly relatedListColumns?: any[] | undefined;
|
|
9099
9006
|
readonly displayField?: string | undefined;
|
|
@@ -9267,7 +9174,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
9267
9174
|
readonly inlineTitle?: string | undefined;
|
|
9268
9175
|
readonly inlineColumns?: any[] | undefined;
|
|
9269
9176
|
readonly inlineAmountField?: string | undefined;
|
|
9270
|
-
readonly relatedList?: boolean | undefined;
|
|
9177
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
9271
9178
|
readonly relatedListTitle?: string | undefined;
|
|
9272
9179
|
readonly relatedListColumns?: any[] | undefined;
|
|
9273
9180
|
readonly displayField?: string | undefined;
|
|
@@ -9441,7 +9348,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
9441
9348
|
readonly inlineTitle?: string | undefined;
|
|
9442
9349
|
readonly inlineColumns?: any[] | undefined;
|
|
9443
9350
|
readonly inlineAmountField?: string | undefined;
|
|
9444
|
-
readonly relatedList?: boolean | undefined;
|
|
9351
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
9445
9352
|
readonly relatedListTitle?: string | undefined;
|
|
9446
9353
|
readonly relatedListColumns?: any[] | undefined;
|
|
9447
9354
|
readonly displayField?: string | undefined;
|
|
@@ -9615,7 +9522,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
9615
9522
|
readonly inlineTitle?: string | undefined;
|
|
9616
9523
|
readonly inlineColumns?: any[] | undefined;
|
|
9617
9524
|
readonly inlineAmountField?: string | undefined;
|
|
9618
|
-
readonly relatedList?: boolean | undefined;
|
|
9525
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
9619
9526
|
readonly relatedListTitle?: string | undefined;
|
|
9620
9527
|
readonly relatedListColumns?: any[] | undefined;
|
|
9621
9528
|
readonly displayField?: string | undefined;
|
|
@@ -9789,7 +9696,7 @@ declare const NotificationDelivery: Omit<{
|
|
|
9789
9696
|
readonly inlineTitle?: string | undefined;
|
|
9790
9697
|
readonly inlineColumns?: any[] | undefined;
|
|
9791
9698
|
readonly inlineAmountField?: string | undefined;
|
|
9792
|
-
readonly relatedList?: boolean | undefined;
|
|
9699
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
9793
9700
|
readonly relatedListTitle?: string | undefined;
|
|
9794
9701
|
readonly relatedListColumns?: any[] | undefined;
|
|
9795
9702
|
readonly displayField?: string | undefined;
|
|
@@ -9998,7 +9905,7 @@ declare const NotificationPreference: Omit<{
|
|
|
9998
9905
|
inlineTitle?: string | undefined;
|
|
9999
9906
|
inlineColumns?: any[] | undefined;
|
|
10000
9907
|
inlineAmountField?: string | undefined;
|
|
10001
|
-
relatedList?: boolean | undefined;
|
|
9908
|
+
relatedList?: boolean | "primary" | undefined;
|
|
10002
9909
|
relatedListTitle?: string | undefined;
|
|
10003
9910
|
relatedListColumns?: any[] | undefined;
|
|
10004
9911
|
displayField?: string | undefined;
|
|
@@ -10279,10 +10186,9 @@ declare const NotificationPreference: Omit<{
|
|
|
10279
10186
|
} | undefined;
|
|
10280
10187
|
} | undefined;
|
|
10281
10188
|
highlightFields?: string[] | undefined;
|
|
10282
|
-
compactLayout?: string[] | undefined;
|
|
10283
10189
|
stageField?: string | false | undefined;
|
|
10284
10190
|
listViews?: Record<string, {
|
|
10285
|
-
type: "map" | "tree" | "grid" | "kanban" | "
|
|
10191
|
+
type: "map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart";
|
|
10286
10192
|
columns: string[] | {
|
|
10287
10193
|
field: string;
|
|
10288
10194
|
label?: string | undefined;
|
|
@@ -10298,8 +10204,55 @@ declare const NotificationPreference: Omit<{
|
|
|
10298
10204
|
link?: boolean | undefined;
|
|
10299
10205
|
action?: string | undefined;
|
|
10300
10206
|
}[];
|
|
10301
|
-
|
|
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;
|
|
10302
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;
|
|
10303
10256
|
data?: {
|
|
10304
10257
|
provider: "object";
|
|
10305
10258
|
object: string;
|
|
@@ -10327,77 +10280,42 @@ declare const NotificationPreference: Omit<{
|
|
|
10327
10280
|
schemaId: string;
|
|
10328
10281
|
schema?: Record<string, unknown> | undefined;
|
|
10329
10282
|
} | undefined;
|
|
10330
|
-
|
|
10331
|
-
|
|
10332
|
-
|
|
10333
|
-
|
|
10334
|
-
|
|
10335
|
-
|
|
10336
|
-
field: string;
|
|
10337
|
-
order: "asc" | "desc";
|
|
10338
|
-
}[] | undefined;
|
|
10339
|
-
searchableFields?: string[] | undefined;
|
|
10340
|
-
filterableFields?: string[] | undefined;
|
|
10341
|
-
userFilters?: {
|
|
10342
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
10343
|
-
fields?: {
|
|
10344
|
-
field: string;
|
|
10345
|
-
label?: string | undefined;
|
|
10346
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
10347
|
-
options?: {
|
|
10348
|
-
value: string | number | boolean;
|
|
10349
|
-
label: string;
|
|
10350
|
-
color?: string | undefined;
|
|
10351
|
-
}[] | undefined;
|
|
10352
|
-
showCount?: boolean | undefined;
|
|
10353
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
10354
|
-
}[] | undefined;
|
|
10355
|
-
tabs?: {
|
|
10356
|
-
name: string;
|
|
10357
|
-
pinned: boolean;
|
|
10358
|
-
isDefault: boolean;
|
|
10359
|
-
visible: boolean;
|
|
10360
|
-
label?: string | undefined;
|
|
10361
|
-
icon?: string | undefined;
|
|
10362
|
-
view?: string | undefined;
|
|
10363
|
-
filter?: {
|
|
10364
|
-
field: string;
|
|
10365
|
-
operator: string;
|
|
10366
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
10367
|
-
}[] | undefined;
|
|
10368
|
-
order?: number | undefined;
|
|
10369
|
-
}[] | undefined;
|
|
10370
|
-
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;
|
|
10371
10289
|
} | undefined;
|
|
10290
|
+
inlineEdit?: boolean | undefined;
|
|
10291
|
+
virtualScroll?: boolean | undefined;
|
|
10372
10292
|
resizable?: boolean | undefined;
|
|
10373
|
-
striped?: boolean | undefined;
|
|
10374
|
-
bordered?: boolean | undefined;
|
|
10375
|
-
compactToolbar?: boolean | undefined;
|
|
10376
|
-
selection?: {
|
|
10377
|
-
type: "none" | "multiple" | "single";
|
|
10378
|
-
} | undefined;
|
|
10379
|
-
navigation?: {
|
|
10380
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
10381
|
-
preventNavigation: boolean;
|
|
10382
|
-
openNewTab: boolean;
|
|
10383
|
-
view?: string | undefined;
|
|
10384
|
-
width?: string | number | undefined;
|
|
10385
|
-
} | undefined;
|
|
10386
|
-
pagination?: {
|
|
10387
|
-
pageSize: number;
|
|
10388
|
-
pageSizeOptions?: number[] | undefined;
|
|
10389
|
-
} | undefined;
|
|
10390
10293
|
kanban?: {
|
|
10391
10294
|
groupByField: string;
|
|
10392
10295
|
columns: string[];
|
|
10393
10296
|
summarizeField?: string | undefined;
|
|
10394
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;
|
|
10395
10305
|
calendar?: {
|
|
10396
10306
|
startDateField: string;
|
|
10397
10307
|
titleField: string;
|
|
10398
10308
|
endDateField?: string | undefined;
|
|
10399
10309
|
colorField?: string | undefined;
|
|
10400
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;
|
|
10401
10319
|
gantt?: {
|
|
10402
10320
|
[x: string]: unknown;
|
|
10403
10321
|
startDateField: string;
|
|
@@ -10429,40 +10347,40 @@ declare const NotificationPreference: Omit<{
|
|
|
10429
10347
|
}[] | undefined;
|
|
10430
10348
|
autoZoomToFilter?: boolean | undefined;
|
|
10431
10349
|
} | undefined;
|
|
10432
|
-
gallery?: {
|
|
10433
|
-
coverFit: "cover" | "contain";
|
|
10434
|
-
cardSize: "small" | "medium" | "large";
|
|
10435
|
-
coverField?: string | undefined;
|
|
10436
|
-
titleField?: string | undefined;
|
|
10437
|
-
visibleFields?: string[] | undefined;
|
|
10438
|
-
} | undefined;
|
|
10439
|
-
timeline?: {
|
|
10440
|
-
startDateField: string;
|
|
10441
|
-
titleField: string;
|
|
10442
|
-
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
10443
|
-
endDateField?: string | undefined;
|
|
10444
|
-
groupByField?: string | undefined;
|
|
10445
|
-
colorField?: string | undefined;
|
|
10446
|
-
} | undefined;
|
|
10447
10350
|
chart?: {
|
|
10448
10351
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
10449
10352
|
dataset: string;
|
|
10450
10353
|
values: string[];
|
|
10451
10354
|
dimensions?: string[] | undefined;
|
|
10452
10355
|
} | undefined;
|
|
10453
|
-
|
|
10454
|
-
|
|
10455
|
-
|
|
10456
|
-
|
|
10457
|
-
|
|
10458
|
-
|
|
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";
|
|
10459
10379
|
} | undefined;
|
|
10460
|
-
|
|
10461
|
-
|
|
10462
|
-
|
|
10463
|
-
lockedBy?: string | undefined;
|
|
10380
|
+
pagination?: {
|
|
10381
|
+
pageSize: number;
|
|
10382
|
+
pageSizeOptions?: number[] | undefined;
|
|
10464
10383
|
} | undefined;
|
|
10465
|
-
rowHeight?: "short" | "medium" | "compact" | "tall" | "extra_tall" | undefined;
|
|
10466
10384
|
grouping?: {
|
|
10467
10385
|
fields: {
|
|
10468
10386
|
field: string;
|
|
@@ -10479,7 +10397,6 @@ declare const NotificationPreference: Omit<{
|
|
|
10479
10397
|
rowActions?: string[] | undefined;
|
|
10480
10398
|
bulkActions?: string[] | undefined;
|
|
10481
10399
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
10482
|
-
virtualScroll?: boolean | undefined;
|
|
10483
10400
|
conditionalFormatting?: {
|
|
10484
10401
|
condition: {
|
|
10485
10402
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -10500,7 +10417,6 @@ declare const NotificationPreference: Omit<{
|
|
|
10500
10417
|
};
|
|
10501
10418
|
style: Record<string, string>;
|
|
10502
10419
|
}[] | undefined;
|
|
10503
|
-
inlineEdit?: boolean | undefined;
|
|
10504
10420
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
10505
10421
|
userActions?: {
|
|
10506
10422
|
sort: boolean;
|
|
@@ -10513,23 +10429,8 @@ declare const NotificationPreference: Omit<{
|
|
|
10513
10429
|
} | undefined;
|
|
10514
10430
|
appearance?: {
|
|
10515
10431
|
showDescription: boolean;
|
|
10516
|
-
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "
|
|
10432
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
10517
10433
|
} | undefined;
|
|
10518
|
-
tabs?: {
|
|
10519
|
-
name: string;
|
|
10520
|
-
pinned: boolean;
|
|
10521
|
-
isDefault: boolean;
|
|
10522
|
-
visible: boolean;
|
|
10523
|
-
label?: string | undefined;
|
|
10524
|
-
icon?: string | undefined;
|
|
10525
|
-
view?: string | undefined;
|
|
10526
|
-
filter?: {
|
|
10527
|
-
field: string;
|
|
10528
|
-
operator: string;
|
|
10529
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
10530
|
-
}[] | undefined;
|
|
10531
|
-
order?: number | undefined;
|
|
10532
|
-
}[] | undefined;
|
|
10533
10434
|
addRecord?: {
|
|
10534
10435
|
enabled: boolean;
|
|
10535
10436
|
position: "top" | "bottom" | "both";
|
|
@@ -10543,31 +10444,6 @@ declare const NotificationPreference: Omit<{
|
|
|
10543
10444
|
message?: string | undefined;
|
|
10544
10445
|
icon?: string | undefined;
|
|
10545
10446
|
} | undefined;
|
|
10546
|
-
aria?: {
|
|
10547
|
-
ariaLabel?: string | undefined;
|
|
10548
|
-
ariaDescribedBy?: string | undefined;
|
|
10549
|
-
role?: string | undefined;
|
|
10550
|
-
} | undefined;
|
|
10551
|
-
responsive?: {
|
|
10552
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
10553
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
10554
|
-
columns?: {
|
|
10555
|
-
xs?: number | undefined;
|
|
10556
|
-
sm?: number | undefined;
|
|
10557
|
-
md?: number | undefined;
|
|
10558
|
-
lg?: number | undefined;
|
|
10559
|
-
xl?: number | undefined;
|
|
10560
|
-
'2xl'?: number | undefined;
|
|
10561
|
-
} | undefined;
|
|
10562
|
-
order?: {
|
|
10563
|
-
xs?: number | undefined;
|
|
10564
|
-
sm?: number | undefined;
|
|
10565
|
-
md?: number | undefined;
|
|
10566
|
-
lg?: number | undefined;
|
|
10567
|
-
xl?: number | undefined;
|
|
10568
|
-
'2xl'?: number | undefined;
|
|
10569
|
-
} | undefined;
|
|
10570
|
-
} | undefined;
|
|
10571
10447
|
performance?: {
|
|
10572
10448
|
lazyLoad?: boolean | undefined;
|
|
10573
10449
|
virtualScroll?: {
|
|
@@ -10727,7 +10603,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10727
10603
|
readonly managedBy: "system";
|
|
10728
10604
|
readonly description: "Per-user × topic × channel notification toggle (mute/allow), with admin-global defaults.";
|
|
10729
10605
|
readonly titleFormat: "{user_id} · {topic} · {channel}";
|
|
10730
|
-
readonly
|
|
10606
|
+
readonly highlightFields: ["user_id", "topic", "channel", "enabled", "digest"];
|
|
10731
10607
|
readonly fields: {
|
|
10732
10608
|
readonly id: {
|
|
10733
10609
|
readonly readonly?: boolean | undefined;
|
|
@@ -10768,7 +10644,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10768
10644
|
readonly inlineTitle?: string | undefined;
|
|
10769
10645
|
readonly inlineColumns?: any[] | undefined;
|
|
10770
10646
|
readonly inlineAmountField?: string | undefined;
|
|
10771
|
-
readonly relatedList?: boolean | undefined;
|
|
10647
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
10772
10648
|
readonly relatedListTitle?: string | undefined;
|
|
10773
10649
|
readonly relatedListColumns?: any[] | undefined;
|
|
10774
10650
|
readonly displayField?: string | undefined;
|
|
@@ -10942,7 +10818,7 @@ declare const NotificationPreference: Omit<{
|
|
|
10942
10818
|
readonly inlineTitle?: string | undefined;
|
|
10943
10819
|
readonly inlineColumns?: any[] | undefined;
|
|
10944
10820
|
readonly inlineAmountField?: string | undefined;
|
|
10945
|
-
readonly relatedList?: boolean | undefined;
|
|
10821
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
10946
10822
|
readonly relatedListTitle?: string | undefined;
|
|
10947
10823
|
readonly relatedListColumns?: any[] | undefined;
|
|
10948
10824
|
readonly displayField?: string | undefined;
|
|
@@ -11116,7 +10992,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11116
10992
|
readonly inlineTitle?: string | undefined;
|
|
11117
10993
|
readonly inlineColumns?: any[] | undefined;
|
|
11118
10994
|
readonly inlineAmountField?: string | undefined;
|
|
11119
|
-
readonly relatedList?: boolean | undefined;
|
|
10995
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11120
10996
|
readonly relatedListTitle?: string | undefined;
|
|
11121
10997
|
readonly relatedListColumns?: any[] | undefined;
|
|
11122
10998
|
readonly displayField?: string | undefined;
|
|
@@ -11290,7 +11166,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11290
11166
|
readonly inlineTitle?: string | undefined;
|
|
11291
11167
|
readonly inlineColumns?: any[] | undefined;
|
|
11292
11168
|
readonly inlineAmountField?: string | undefined;
|
|
11293
|
-
readonly relatedList?: boolean | undefined;
|
|
11169
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11294
11170
|
readonly relatedListTitle?: string | undefined;
|
|
11295
11171
|
readonly relatedListColumns?: any[] | undefined;
|
|
11296
11172
|
readonly displayField?: string | undefined;
|
|
@@ -11464,7 +11340,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11464
11340
|
readonly inlineTitle?: string | undefined;
|
|
11465
11341
|
readonly inlineColumns?: any[] | undefined;
|
|
11466
11342
|
readonly inlineAmountField?: string | undefined;
|
|
11467
|
-
readonly relatedList?: boolean | undefined;
|
|
11343
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11468
11344
|
readonly relatedListTitle?: string | undefined;
|
|
11469
11345
|
readonly relatedListColumns?: any[] | undefined;
|
|
11470
11346
|
readonly displayField?: string | undefined;
|
|
@@ -11638,7 +11514,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11638
11514
|
readonly inlineTitle?: string | undefined;
|
|
11639
11515
|
readonly inlineColumns?: any[] | undefined;
|
|
11640
11516
|
readonly inlineAmountField?: string | undefined;
|
|
11641
|
-
readonly relatedList?: boolean | undefined;
|
|
11517
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11642
11518
|
readonly relatedListTitle?: string | undefined;
|
|
11643
11519
|
readonly relatedListColumns?: any[] | undefined;
|
|
11644
11520
|
readonly displayField?: string | undefined;
|
|
@@ -11812,7 +11688,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11812
11688
|
readonly inlineTitle?: string | undefined;
|
|
11813
11689
|
readonly inlineColumns?: any[] | undefined;
|
|
11814
11690
|
readonly inlineAmountField?: string | undefined;
|
|
11815
|
-
readonly relatedList?: boolean | undefined;
|
|
11691
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11816
11692
|
readonly relatedListTitle?: string | undefined;
|
|
11817
11693
|
readonly relatedListColumns?: any[] | undefined;
|
|
11818
11694
|
readonly displayField?: string | undefined;
|
|
@@ -11986,7 +11862,7 @@ declare const NotificationPreference: Omit<{
|
|
|
11986
11862
|
readonly inlineTitle?: string | undefined;
|
|
11987
11863
|
readonly inlineColumns?: any[] | undefined;
|
|
11988
11864
|
readonly inlineAmountField?: string | undefined;
|
|
11989
|
-
readonly relatedList?: boolean | undefined;
|
|
11865
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11990
11866
|
readonly relatedListTitle?: string | undefined;
|
|
11991
11867
|
readonly relatedListColumns?: any[] | undefined;
|
|
11992
11868
|
readonly displayField?: string | undefined;
|
|
@@ -12160,7 +12036,7 @@ declare const NotificationPreference: Omit<{
|
|
|
12160
12036
|
readonly inlineTitle?: string | undefined;
|
|
12161
12037
|
readonly inlineColumns?: any[] | undefined;
|
|
12162
12038
|
readonly inlineAmountField?: string | undefined;
|
|
12163
|
-
readonly relatedList?: boolean | undefined;
|
|
12039
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
12164
12040
|
readonly relatedListTitle?: string | undefined;
|
|
12165
12041
|
readonly relatedListColumns?: any[] | undefined;
|
|
12166
12042
|
readonly displayField?: string | undefined;
|
|
@@ -12361,7 +12237,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
12361
12237
|
inlineTitle?: string | undefined;
|
|
12362
12238
|
inlineColumns?: any[] | undefined;
|
|
12363
12239
|
inlineAmountField?: string | undefined;
|
|
12364
|
-
relatedList?: boolean | undefined;
|
|
12240
|
+
relatedList?: boolean | "primary" | undefined;
|
|
12365
12241
|
relatedListTitle?: string | undefined;
|
|
12366
12242
|
relatedListColumns?: any[] | undefined;
|
|
12367
12243
|
displayField?: string | undefined;
|
|
@@ -12642,10 +12518,9 @@ declare const NotificationSubscription: Omit<{
|
|
|
12642
12518
|
} | undefined;
|
|
12643
12519
|
} | undefined;
|
|
12644
12520
|
highlightFields?: string[] | undefined;
|
|
12645
|
-
compactLayout?: string[] | undefined;
|
|
12646
12521
|
stageField?: string | false | undefined;
|
|
12647
12522
|
listViews?: Record<string, {
|
|
12648
|
-
type: "map" | "tree" | "grid" | "kanban" | "
|
|
12523
|
+
type: "map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart";
|
|
12649
12524
|
columns: string[] | {
|
|
12650
12525
|
field: string;
|
|
12651
12526
|
label?: string | undefined;
|
|
@@ -12661,8 +12536,55 @@ declare const NotificationSubscription: Omit<{
|
|
|
12661
12536
|
link?: boolean | undefined;
|
|
12662
12537
|
action?: string | undefined;
|
|
12663
12538
|
}[];
|
|
12664
|
-
|
|
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;
|
|
12665
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;
|
|
12666
12588
|
data?: {
|
|
12667
12589
|
provider: "object";
|
|
12668
12590
|
object: string;
|
|
@@ -12690,77 +12612,42 @@ declare const NotificationSubscription: Omit<{
|
|
|
12690
12612
|
schemaId: string;
|
|
12691
12613
|
schema?: Record<string, unknown> | undefined;
|
|
12692
12614
|
} | undefined;
|
|
12693
|
-
|
|
12694
|
-
|
|
12695
|
-
|
|
12696
|
-
|
|
12697
|
-
|
|
12698
|
-
|
|
12699
|
-
field: string;
|
|
12700
|
-
order: "asc" | "desc";
|
|
12701
|
-
}[] | undefined;
|
|
12702
|
-
searchableFields?: string[] | undefined;
|
|
12703
|
-
filterableFields?: string[] | undefined;
|
|
12704
|
-
userFilters?: {
|
|
12705
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
12706
|
-
fields?: {
|
|
12707
|
-
field: string;
|
|
12708
|
-
label?: string | undefined;
|
|
12709
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
12710
|
-
options?: {
|
|
12711
|
-
value: string | number | boolean;
|
|
12712
|
-
label: string;
|
|
12713
|
-
color?: string | undefined;
|
|
12714
|
-
}[] | undefined;
|
|
12715
|
-
showCount?: boolean | undefined;
|
|
12716
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
12717
|
-
}[] | undefined;
|
|
12718
|
-
tabs?: {
|
|
12719
|
-
name: string;
|
|
12720
|
-
pinned: boolean;
|
|
12721
|
-
isDefault: boolean;
|
|
12722
|
-
visible: boolean;
|
|
12723
|
-
label?: string | undefined;
|
|
12724
|
-
icon?: string | undefined;
|
|
12725
|
-
view?: string | undefined;
|
|
12726
|
-
filter?: {
|
|
12727
|
-
field: string;
|
|
12728
|
-
operator: string;
|
|
12729
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
12730
|
-
}[] | undefined;
|
|
12731
|
-
order?: number | undefined;
|
|
12732
|
-
}[] | undefined;
|
|
12733
|
-
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;
|
|
12734
12621
|
} | undefined;
|
|
12622
|
+
inlineEdit?: boolean | undefined;
|
|
12623
|
+
virtualScroll?: boolean | undefined;
|
|
12735
12624
|
resizable?: boolean | undefined;
|
|
12736
|
-
striped?: boolean | undefined;
|
|
12737
|
-
bordered?: boolean | undefined;
|
|
12738
|
-
compactToolbar?: boolean | undefined;
|
|
12739
|
-
selection?: {
|
|
12740
|
-
type: "none" | "multiple" | "single";
|
|
12741
|
-
} | undefined;
|
|
12742
|
-
navigation?: {
|
|
12743
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
12744
|
-
preventNavigation: boolean;
|
|
12745
|
-
openNewTab: boolean;
|
|
12746
|
-
view?: string | undefined;
|
|
12747
|
-
width?: string | number | undefined;
|
|
12748
|
-
} | undefined;
|
|
12749
|
-
pagination?: {
|
|
12750
|
-
pageSize: number;
|
|
12751
|
-
pageSizeOptions?: number[] | undefined;
|
|
12752
|
-
} | undefined;
|
|
12753
12625
|
kanban?: {
|
|
12754
12626
|
groupByField: string;
|
|
12755
12627
|
columns: string[];
|
|
12756
12628
|
summarizeField?: string | undefined;
|
|
12757
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;
|
|
12758
12637
|
calendar?: {
|
|
12759
12638
|
startDateField: string;
|
|
12760
12639
|
titleField: string;
|
|
12761
12640
|
endDateField?: string | undefined;
|
|
12762
12641
|
colorField?: string | undefined;
|
|
12763
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;
|
|
12764
12651
|
gantt?: {
|
|
12765
12652
|
[x: string]: unknown;
|
|
12766
12653
|
startDateField: string;
|
|
@@ -12792,40 +12679,40 @@ declare const NotificationSubscription: Omit<{
|
|
|
12792
12679
|
}[] | undefined;
|
|
12793
12680
|
autoZoomToFilter?: boolean | undefined;
|
|
12794
12681
|
} | undefined;
|
|
12795
|
-
gallery?: {
|
|
12796
|
-
coverFit: "cover" | "contain";
|
|
12797
|
-
cardSize: "small" | "medium" | "large";
|
|
12798
|
-
coverField?: string | undefined;
|
|
12799
|
-
titleField?: string | undefined;
|
|
12800
|
-
visibleFields?: string[] | undefined;
|
|
12801
|
-
} | undefined;
|
|
12802
|
-
timeline?: {
|
|
12803
|
-
startDateField: string;
|
|
12804
|
-
titleField: string;
|
|
12805
|
-
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
12806
|
-
endDateField?: string | undefined;
|
|
12807
|
-
groupByField?: string | undefined;
|
|
12808
|
-
colorField?: string | undefined;
|
|
12809
|
-
} | undefined;
|
|
12810
12682
|
chart?: {
|
|
12811
12683
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
12812
12684
|
dataset: string;
|
|
12813
12685
|
values: string[];
|
|
12814
12686
|
dimensions?: string[] | undefined;
|
|
12815
12687
|
} | undefined;
|
|
12816
|
-
|
|
12817
|
-
|
|
12818
|
-
|
|
12819
|
-
|
|
12820
|
-
|
|
12821
|
-
|
|
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";
|
|
12822
12711
|
} | undefined;
|
|
12823
|
-
|
|
12824
|
-
|
|
12825
|
-
|
|
12826
|
-
lockedBy?: string | undefined;
|
|
12712
|
+
pagination?: {
|
|
12713
|
+
pageSize: number;
|
|
12714
|
+
pageSizeOptions?: number[] | undefined;
|
|
12827
12715
|
} | undefined;
|
|
12828
|
-
rowHeight?: "short" | "medium" | "compact" | "tall" | "extra_tall" | undefined;
|
|
12829
12716
|
grouping?: {
|
|
12830
12717
|
fields: {
|
|
12831
12718
|
field: string;
|
|
@@ -12842,7 +12729,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
12842
12729
|
rowActions?: string[] | undefined;
|
|
12843
12730
|
bulkActions?: string[] | undefined;
|
|
12844
12731
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
12845
|
-
virtualScroll?: boolean | undefined;
|
|
12846
12732
|
conditionalFormatting?: {
|
|
12847
12733
|
condition: {
|
|
12848
12734
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -12863,7 +12749,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
12863
12749
|
};
|
|
12864
12750
|
style: Record<string, string>;
|
|
12865
12751
|
}[] | undefined;
|
|
12866
|
-
inlineEdit?: boolean | undefined;
|
|
12867
12752
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
12868
12753
|
userActions?: {
|
|
12869
12754
|
sort: boolean;
|
|
@@ -12876,23 +12761,8 @@ declare const NotificationSubscription: Omit<{
|
|
|
12876
12761
|
} | undefined;
|
|
12877
12762
|
appearance?: {
|
|
12878
12763
|
showDescription: boolean;
|
|
12879
|
-
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "
|
|
12764
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
12880
12765
|
} | undefined;
|
|
12881
|
-
tabs?: {
|
|
12882
|
-
name: string;
|
|
12883
|
-
pinned: boolean;
|
|
12884
|
-
isDefault: boolean;
|
|
12885
|
-
visible: boolean;
|
|
12886
|
-
label?: string | undefined;
|
|
12887
|
-
icon?: string | undefined;
|
|
12888
|
-
view?: string | undefined;
|
|
12889
|
-
filter?: {
|
|
12890
|
-
field: string;
|
|
12891
|
-
operator: string;
|
|
12892
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
12893
|
-
}[] | undefined;
|
|
12894
|
-
order?: number | undefined;
|
|
12895
|
-
}[] | undefined;
|
|
12896
12766
|
addRecord?: {
|
|
12897
12767
|
enabled: boolean;
|
|
12898
12768
|
position: "top" | "bottom" | "both";
|
|
@@ -12906,31 +12776,6 @@ declare const NotificationSubscription: Omit<{
|
|
|
12906
12776
|
message?: string | undefined;
|
|
12907
12777
|
icon?: string | undefined;
|
|
12908
12778
|
} | undefined;
|
|
12909
|
-
aria?: {
|
|
12910
|
-
ariaLabel?: string | undefined;
|
|
12911
|
-
ariaDescribedBy?: string | undefined;
|
|
12912
|
-
role?: string | undefined;
|
|
12913
|
-
} | undefined;
|
|
12914
|
-
responsive?: {
|
|
12915
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
12916
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
12917
|
-
columns?: {
|
|
12918
|
-
xs?: number | undefined;
|
|
12919
|
-
sm?: number | undefined;
|
|
12920
|
-
md?: number | undefined;
|
|
12921
|
-
lg?: number | undefined;
|
|
12922
|
-
xl?: number | undefined;
|
|
12923
|
-
'2xl'?: number | undefined;
|
|
12924
|
-
} | undefined;
|
|
12925
|
-
order?: {
|
|
12926
|
-
xs?: number | undefined;
|
|
12927
|
-
sm?: number | undefined;
|
|
12928
|
-
md?: number | undefined;
|
|
12929
|
-
lg?: number | undefined;
|
|
12930
|
-
xl?: number | undefined;
|
|
12931
|
-
'2xl'?: number | undefined;
|
|
12932
|
-
} | undefined;
|
|
12933
|
-
} | undefined;
|
|
12934
12779
|
performance?: {
|
|
12935
12780
|
lazyLoad?: boolean | undefined;
|
|
12936
12781
|
virtualScroll?: {
|
|
@@ -13090,7 +12935,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13090
12935
|
readonly managedBy: "system";
|
|
13091
12936
|
readonly description: "Standing subscription of a principal (role/team/user) to a notification topic.";
|
|
13092
12937
|
readonly titleFormat: "{principal} · {topic}";
|
|
13093
|
-
readonly
|
|
12938
|
+
readonly highlightFields: ["topic", "principal", "enabled", "created_at"];
|
|
13094
12939
|
readonly fields: {
|
|
13095
12940
|
readonly id: {
|
|
13096
12941
|
readonly readonly?: boolean | undefined;
|
|
@@ -13131,7 +12976,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13131
12976
|
readonly inlineTitle?: string | undefined;
|
|
13132
12977
|
readonly inlineColumns?: any[] | undefined;
|
|
13133
12978
|
readonly inlineAmountField?: string | undefined;
|
|
13134
|
-
readonly relatedList?: boolean | undefined;
|
|
12979
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
13135
12980
|
readonly relatedListTitle?: string | undefined;
|
|
13136
12981
|
readonly relatedListColumns?: any[] | undefined;
|
|
13137
12982
|
readonly displayField?: string | undefined;
|
|
@@ -13305,7 +13150,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13305
13150
|
readonly inlineTitle?: string | undefined;
|
|
13306
13151
|
readonly inlineColumns?: any[] | undefined;
|
|
13307
13152
|
readonly inlineAmountField?: string | undefined;
|
|
13308
|
-
readonly relatedList?: boolean | undefined;
|
|
13153
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
13309
13154
|
readonly relatedListTitle?: string | undefined;
|
|
13310
13155
|
readonly relatedListColumns?: any[] | undefined;
|
|
13311
13156
|
readonly displayField?: string | undefined;
|
|
@@ -13479,7 +13324,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13479
13324
|
readonly inlineTitle?: string | undefined;
|
|
13480
13325
|
readonly inlineColumns?: any[] | undefined;
|
|
13481
13326
|
readonly inlineAmountField?: string | undefined;
|
|
13482
|
-
readonly relatedList?: boolean | undefined;
|
|
13327
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
13483
13328
|
readonly relatedListTitle?: string | undefined;
|
|
13484
13329
|
readonly relatedListColumns?: any[] | undefined;
|
|
13485
13330
|
readonly displayField?: string | undefined;
|
|
@@ -13653,7 +13498,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13653
13498
|
readonly inlineTitle?: string | undefined;
|
|
13654
13499
|
readonly inlineColumns?: any[] | undefined;
|
|
13655
13500
|
readonly inlineAmountField?: string | undefined;
|
|
13656
|
-
readonly relatedList?: boolean | undefined;
|
|
13501
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
13657
13502
|
readonly relatedListTitle?: string | undefined;
|
|
13658
13503
|
readonly relatedListColumns?: any[] | undefined;
|
|
13659
13504
|
readonly displayField?: string | undefined;
|
|
@@ -13827,7 +13672,7 @@ declare const NotificationSubscription: Omit<{
|
|
|
13827
13672
|
readonly inlineTitle?: string | undefined;
|
|
13828
13673
|
readonly inlineColumns?: any[] | undefined;
|
|
13829
13674
|
readonly inlineAmountField?: string | undefined;
|
|
13830
|
-
readonly relatedList?: boolean | undefined;
|
|
13675
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
13831
13676
|
readonly relatedListTitle?: string | undefined;
|
|
13832
13677
|
readonly relatedListColumns?: any[] | undefined;
|
|
13833
13678
|
readonly displayField?: string | undefined;
|
|
@@ -14027,7 +13872,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14027
13872
|
inlineTitle?: string | undefined;
|
|
14028
13873
|
inlineColumns?: any[] | undefined;
|
|
14029
13874
|
inlineAmountField?: string | undefined;
|
|
14030
|
-
relatedList?: boolean | undefined;
|
|
13875
|
+
relatedList?: boolean | "primary" | undefined;
|
|
14031
13876
|
relatedListTitle?: string | undefined;
|
|
14032
13877
|
relatedListColumns?: any[] | undefined;
|
|
14033
13878
|
displayField?: string | undefined;
|
|
@@ -14308,10 +14153,9 @@ declare const NotificationTemplate: Omit<{
|
|
|
14308
14153
|
} | undefined;
|
|
14309
14154
|
} | undefined;
|
|
14310
14155
|
highlightFields?: string[] | undefined;
|
|
14311
|
-
compactLayout?: string[] | undefined;
|
|
14312
14156
|
stageField?: string | false | undefined;
|
|
14313
14157
|
listViews?: Record<string, {
|
|
14314
|
-
type: "map" | "tree" | "grid" | "kanban" | "
|
|
14158
|
+
type: "map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart";
|
|
14315
14159
|
columns: string[] | {
|
|
14316
14160
|
field: string;
|
|
14317
14161
|
label?: string | undefined;
|
|
@@ -14327,8 +14171,55 @@ declare const NotificationTemplate: Omit<{
|
|
|
14327
14171
|
link?: boolean | undefined;
|
|
14328
14172
|
action?: string | undefined;
|
|
14329
14173
|
}[];
|
|
14330
|
-
|
|
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;
|
|
14331
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;
|
|
14332
14223
|
data?: {
|
|
14333
14224
|
provider: "object";
|
|
14334
14225
|
object: string;
|
|
@@ -14356,77 +14247,42 @@ declare const NotificationTemplate: Omit<{
|
|
|
14356
14247
|
schemaId: string;
|
|
14357
14248
|
schema?: Record<string, unknown> | undefined;
|
|
14358
14249
|
} | undefined;
|
|
14359
|
-
|
|
14360
|
-
|
|
14361
|
-
|
|
14362
|
-
|
|
14363
|
-
|
|
14364
|
-
|
|
14365
|
-
field: string;
|
|
14366
|
-
order: "asc" | "desc";
|
|
14367
|
-
}[] | undefined;
|
|
14368
|
-
searchableFields?: string[] | undefined;
|
|
14369
|
-
filterableFields?: string[] | undefined;
|
|
14370
|
-
userFilters?: {
|
|
14371
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
14372
|
-
fields?: {
|
|
14373
|
-
field: string;
|
|
14374
|
-
label?: string | undefined;
|
|
14375
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
14376
|
-
options?: {
|
|
14377
|
-
value: string | number | boolean;
|
|
14378
|
-
label: string;
|
|
14379
|
-
color?: string | undefined;
|
|
14380
|
-
}[] | undefined;
|
|
14381
|
-
showCount?: boolean | undefined;
|
|
14382
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
14383
|
-
}[] | undefined;
|
|
14384
|
-
tabs?: {
|
|
14385
|
-
name: string;
|
|
14386
|
-
pinned: boolean;
|
|
14387
|
-
isDefault: boolean;
|
|
14388
|
-
visible: boolean;
|
|
14389
|
-
label?: string | undefined;
|
|
14390
|
-
icon?: string | undefined;
|
|
14391
|
-
view?: string | undefined;
|
|
14392
|
-
filter?: {
|
|
14393
|
-
field: string;
|
|
14394
|
-
operator: string;
|
|
14395
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
14396
|
-
}[] | undefined;
|
|
14397
|
-
order?: number | undefined;
|
|
14398
|
-
}[] | undefined;
|
|
14399
|
-
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;
|
|
14400
14256
|
} | undefined;
|
|
14257
|
+
inlineEdit?: boolean | undefined;
|
|
14258
|
+
virtualScroll?: boolean | undefined;
|
|
14401
14259
|
resizable?: boolean | undefined;
|
|
14402
|
-
striped?: boolean | undefined;
|
|
14403
|
-
bordered?: boolean | undefined;
|
|
14404
|
-
compactToolbar?: boolean | undefined;
|
|
14405
|
-
selection?: {
|
|
14406
|
-
type: "none" | "multiple" | "single";
|
|
14407
|
-
} | undefined;
|
|
14408
|
-
navigation?: {
|
|
14409
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
14410
|
-
preventNavigation: boolean;
|
|
14411
|
-
openNewTab: boolean;
|
|
14412
|
-
view?: string | undefined;
|
|
14413
|
-
width?: string | number | undefined;
|
|
14414
|
-
} | undefined;
|
|
14415
|
-
pagination?: {
|
|
14416
|
-
pageSize: number;
|
|
14417
|
-
pageSizeOptions?: number[] | undefined;
|
|
14418
|
-
} | undefined;
|
|
14419
14260
|
kanban?: {
|
|
14420
14261
|
groupByField: string;
|
|
14421
14262
|
columns: string[];
|
|
14422
14263
|
summarizeField?: string | undefined;
|
|
14423
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;
|
|
14424
14272
|
calendar?: {
|
|
14425
14273
|
startDateField: string;
|
|
14426
14274
|
titleField: string;
|
|
14427
14275
|
endDateField?: string | undefined;
|
|
14428
14276
|
colorField?: string | undefined;
|
|
14429
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;
|
|
14430
14286
|
gantt?: {
|
|
14431
14287
|
[x: string]: unknown;
|
|
14432
14288
|
startDateField: string;
|
|
@@ -14458,40 +14314,40 @@ declare const NotificationTemplate: Omit<{
|
|
|
14458
14314
|
}[] | undefined;
|
|
14459
14315
|
autoZoomToFilter?: boolean | undefined;
|
|
14460
14316
|
} | undefined;
|
|
14461
|
-
gallery?: {
|
|
14462
|
-
coverFit: "cover" | "contain";
|
|
14463
|
-
cardSize: "small" | "medium" | "large";
|
|
14464
|
-
coverField?: string | undefined;
|
|
14465
|
-
titleField?: string | undefined;
|
|
14466
|
-
visibleFields?: string[] | undefined;
|
|
14467
|
-
} | undefined;
|
|
14468
|
-
timeline?: {
|
|
14469
|
-
startDateField: string;
|
|
14470
|
-
titleField: string;
|
|
14471
|
-
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
14472
|
-
endDateField?: string | undefined;
|
|
14473
|
-
groupByField?: string | undefined;
|
|
14474
|
-
colorField?: string | undefined;
|
|
14475
|
-
} | undefined;
|
|
14476
14317
|
chart?: {
|
|
14477
14318
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
14478
14319
|
dataset: string;
|
|
14479
14320
|
values: string[];
|
|
14480
14321
|
dimensions?: string[] | undefined;
|
|
14481
14322
|
} | undefined;
|
|
14482
|
-
|
|
14483
|
-
|
|
14484
|
-
|
|
14485
|
-
|
|
14486
|
-
|
|
14487
|
-
|
|
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";
|
|
14488
14346
|
} | undefined;
|
|
14489
|
-
|
|
14490
|
-
|
|
14491
|
-
|
|
14492
|
-
lockedBy?: string | undefined;
|
|
14347
|
+
pagination?: {
|
|
14348
|
+
pageSize: number;
|
|
14349
|
+
pageSizeOptions?: number[] | undefined;
|
|
14493
14350
|
} | undefined;
|
|
14494
|
-
rowHeight?: "short" | "medium" | "compact" | "tall" | "extra_tall" | undefined;
|
|
14495
14351
|
grouping?: {
|
|
14496
14352
|
fields: {
|
|
14497
14353
|
field: string;
|
|
@@ -14508,7 +14364,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
14508
14364
|
rowActions?: string[] | undefined;
|
|
14509
14365
|
bulkActions?: string[] | undefined;
|
|
14510
14366
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
14511
|
-
virtualScroll?: boolean | undefined;
|
|
14512
14367
|
conditionalFormatting?: {
|
|
14513
14368
|
condition: {
|
|
14514
14369
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -14529,7 +14384,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
14529
14384
|
};
|
|
14530
14385
|
style: Record<string, string>;
|
|
14531
14386
|
}[] | undefined;
|
|
14532
|
-
inlineEdit?: boolean | undefined;
|
|
14533
14387
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
14534
14388
|
userActions?: {
|
|
14535
14389
|
sort: boolean;
|
|
@@ -14542,23 +14396,8 @@ declare const NotificationTemplate: Omit<{
|
|
|
14542
14396
|
} | undefined;
|
|
14543
14397
|
appearance?: {
|
|
14544
14398
|
showDescription: boolean;
|
|
14545
|
-
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "
|
|
14399
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
14546
14400
|
} | undefined;
|
|
14547
|
-
tabs?: {
|
|
14548
|
-
name: string;
|
|
14549
|
-
pinned: boolean;
|
|
14550
|
-
isDefault: boolean;
|
|
14551
|
-
visible: boolean;
|
|
14552
|
-
label?: string | undefined;
|
|
14553
|
-
icon?: string | undefined;
|
|
14554
|
-
view?: string | undefined;
|
|
14555
|
-
filter?: {
|
|
14556
|
-
field: string;
|
|
14557
|
-
operator: string;
|
|
14558
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
14559
|
-
}[] | undefined;
|
|
14560
|
-
order?: number | undefined;
|
|
14561
|
-
}[] | undefined;
|
|
14562
14401
|
addRecord?: {
|
|
14563
14402
|
enabled: boolean;
|
|
14564
14403
|
position: "top" | "bottom" | "both";
|
|
@@ -14572,31 +14411,6 @@ declare const NotificationTemplate: Omit<{
|
|
|
14572
14411
|
message?: string | undefined;
|
|
14573
14412
|
icon?: string | undefined;
|
|
14574
14413
|
} | undefined;
|
|
14575
|
-
aria?: {
|
|
14576
|
-
ariaLabel?: string | undefined;
|
|
14577
|
-
ariaDescribedBy?: string | undefined;
|
|
14578
|
-
role?: string | undefined;
|
|
14579
|
-
} | undefined;
|
|
14580
|
-
responsive?: {
|
|
14581
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
14582
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
14583
|
-
columns?: {
|
|
14584
|
-
xs?: number | undefined;
|
|
14585
|
-
sm?: number | undefined;
|
|
14586
|
-
md?: number | undefined;
|
|
14587
|
-
lg?: number | undefined;
|
|
14588
|
-
xl?: number | undefined;
|
|
14589
|
-
'2xl'?: number | undefined;
|
|
14590
|
-
} | undefined;
|
|
14591
|
-
order?: {
|
|
14592
|
-
xs?: number | undefined;
|
|
14593
|
-
sm?: number | undefined;
|
|
14594
|
-
md?: number | undefined;
|
|
14595
|
-
lg?: number | undefined;
|
|
14596
|
-
xl?: number | undefined;
|
|
14597
|
-
'2xl'?: number | undefined;
|
|
14598
|
-
} | undefined;
|
|
14599
|
-
} | undefined;
|
|
14600
14414
|
performance?: {
|
|
14601
14415
|
lazyLoad?: boolean | undefined;
|
|
14602
14416
|
virtualScroll?: {
|
|
@@ -14756,7 +14570,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14756
14570
|
readonly managedBy: "system";
|
|
14757
14571
|
readonly description: "Per (topic × channel × locale) render template for notifications.";
|
|
14758
14572
|
readonly titleFormat: "{topic} · {channel} · {locale}";
|
|
14759
|
-
readonly
|
|
14573
|
+
readonly highlightFields: ["topic", "channel", "locale", "is_active"];
|
|
14760
14574
|
readonly fields: {
|
|
14761
14575
|
readonly id: {
|
|
14762
14576
|
readonly readonly?: boolean | undefined;
|
|
@@ -14797,7 +14611,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14797
14611
|
readonly inlineTitle?: string | undefined;
|
|
14798
14612
|
readonly inlineColumns?: any[] | undefined;
|
|
14799
14613
|
readonly inlineAmountField?: string | undefined;
|
|
14800
|
-
readonly relatedList?: boolean | undefined;
|
|
14614
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
14801
14615
|
readonly relatedListTitle?: string | undefined;
|
|
14802
14616
|
readonly relatedListColumns?: any[] | undefined;
|
|
14803
14617
|
readonly displayField?: string | undefined;
|
|
@@ -14971,7 +14785,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
14971
14785
|
readonly inlineTitle?: string | undefined;
|
|
14972
14786
|
readonly inlineColumns?: any[] | undefined;
|
|
14973
14787
|
readonly inlineAmountField?: string | undefined;
|
|
14974
|
-
readonly relatedList?: boolean | undefined;
|
|
14788
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
14975
14789
|
readonly relatedListTitle?: string | undefined;
|
|
14976
14790
|
readonly relatedListColumns?: any[] | undefined;
|
|
14977
14791
|
readonly displayField?: string | undefined;
|
|
@@ -15145,7 +14959,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
15145
14959
|
readonly inlineTitle?: string | undefined;
|
|
15146
14960
|
readonly inlineColumns?: any[] | undefined;
|
|
15147
14961
|
readonly inlineAmountField?: string | undefined;
|
|
15148
|
-
readonly relatedList?: boolean | undefined;
|
|
14962
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
15149
14963
|
readonly relatedListTitle?: string | undefined;
|
|
15150
14964
|
readonly relatedListColumns?: any[] | undefined;
|
|
15151
14965
|
readonly displayField?: string | undefined;
|
|
@@ -15319,7 +15133,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
15319
15133
|
readonly inlineTitle?: string | undefined;
|
|
15320
15134
|
readonly inlineColumns?: any[] | undefined;
|
|
15321
15135
|
readonly inlineAmountField?: string | undefined;
|
|
15322
|
-
readonly relatedList?: boolean | undefined;
|
|
15136
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
15323
15137
|
readonly relatedListTitle?: string | undefined;
|
|
15324
15138
|
readonly relatedListColumns?: any[] | undefined;
|
|
15325
15139
|
readonly displayField?: string | undefined;
|
|
@@ -15493,7 +15307,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
15493
15307
|
readonly inlineTitle?: string | undefined;
|
|
15494
15308
|
readonly inlineColumns?: any[] | undefined;
|
|
15495
15309
|
readonly inlineAmountField?: string | undefined;
|
|
15496
|
-
readonly relatedList?: boolean | undefined;
|
|
15310
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
15497
15311
|
readonly relatedListTitle?: string | undefined;
|
|
15498
15312
|
readonly relatedListColumns?: any[] | undefined;
|
|
15499
15313
|
readonly displayField?: string | undefined;
|
|
@@ -15667,7 +15481,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
15667
15481
|
readonly inlineTitle?: string | undefined;
|
|
15668
15482
|
readonly inlineColumns?: any[] | undefined;
|
|
15669
15483
|
readonly inlineAmountField?: string | undefined;
|
|
15670
|
-
readonly relatedList?: boolean | undefined;
|
|
15484
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
15671
15485
|
readonly relatedListTitle?: string | undefined;
|
|
15672
15486
|
readonly relatedListColumns?: any[] | undefined;
|
|
15673
15487
|
readonly displayField?: string | undefined;
|
|
@@ -15841,7 +15655,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
15841
15655
|
readonly inlineTitle?: string | undefined;
|
|
15842
15656
|
readonly inlineColumns?: any[] | undefined;
|
|
15843
15657
|
readonly inlineAmountField?: string | undefined;
|
|
15844
|
-
readonly relatedList?: boolean | undefined;
|
|
15658
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
15845
15659
|
readonly relatedListTitle?: string | undefined;
|
|
15846
15660
|
readonly relatedListColumns?: any[] | undefined;
|
|
15847
15661
|
readonly displayField?: string | undefined;
|
|
@@ -16015,7 +15829,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
16015
15829
|
readonly inlineTitle?: string | undefined;
|
|
16016
15830
|
readonly inlineColumns?: any[] | undefined;
|
|
16017
15831
|
readonly inlineAmountField?: string | undefined;
|
|
16018
|
-
readonly relatedList?: boolean | undefined;
|
|
15832
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
16019
15833
|
readonly relatedListTitle?: string | undefined;
|
|
16020
15834
|
readonly relatedListColumns?: any[] | undefined;
|
|
16021
15835
|
readonly displayField?: string | undefined;
|
|
@@ -16189,7 +16003,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
16189
16003
|
readonly inlineTitle?: string | undefined;
|
|
16190
16004
|
readonly inlineColumns?: any[] | undefined;
|
|
16191
16005
|
readonly inlineAmountField?: string | undefined;
|
|
16192
|
-
readonly relatedList?: boolean | undefined;
|
|
16006
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
16193
16007
|
readonly relatedListTitle?: string | undefined;
|
|
16194
16008
|
readonly relatedListColumns?: any[] | undefined;
|
|
16195
16009
|
readonly displayField?: string | undefined;
|
|
@@ -16363,7 +16177,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
16363
16177
|
readonly inlineTitle?: string | undefined;
|
|
16364
16178
|
readonly inlineColumns?: any[] | undefined;
|
|
16365
16179
|
readonly inlineAmountField?: string | undefined;
|
|
16366
|
-
readonly relatedList?: boolean | undefined;
|
|
16180
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
16367
16181
|
readonly relatedListTitle?: string | undefined;
|
|
16368
16182
|
readonly relatedListColumns?: any[] | undefined;
|
|
16369
16183
|
readonly displayField?: string | undefined;
|
|
@@ -16537,7 +16351,7 @@ declare const NotificationTemplate: Omit<{
|
|
|
16537
16351
|
readonly inlineTitle?: string | undefined;
|
|
16538
16352
|
readonly inlineColumns?: any[] | undefined;
|
|
16539
16353
|
readonly inlineAmountField?: string | undefined;
|
|
16540
|
-
readonly relatedList?: boolean | undefined;
|
|
16354
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
16541
16355
|
readonly relatedListTitle?: string | undefined;
|
|
16542
16356
|
readonly relatedListColumns?: any[] | undefined;
|
|
16543
16357
|
readonly displayField?: string | undefined;
|
|
@@ -16745,7 +16559,7 @@ declare const HttpDelivery: Omit<{
|
|
|
16745
16559
|
inlineTitle?: string | undefined;
|
|
16746
16560
|
inlineColumns?: any[] | undefined;
|
|
16747
16561
|
inlineAmountField?: string | undefined;
|
|
16748
|
-
relatedList?: boolean | undefined;
|
|
16562
|
+
relatedList?: boolean | "primary" | undefined;
|
|
16749
16563
|
relatedListTitle?: string | undefined;
|
|
16750
16564
|
relatedListColumns?: any[] | undefined;
|
|
16751
16565
|
displayField?: string | undefined;
|
|
@@ -17026,10 +16840,9 @@ declare const HttpDelivery: Omit<{
|
|
|
17026
16840
|
} | undefined;
|
|
17027
16841
|
} | undefined;
|
|
17028
16842
|
highlightFields?: string[] | undefined;
|
|
17029
|
-
compactLayout?: string[] | undefined;
|
|
17030
16843
|
stageField?: string | false | undefined;
|
|
17031
16844
|
listViews?: Record<string, {
|
|
17032
|
-
type: "map" | "tree" | "grid" | "kanban" | "
|
|
16845
|
+
type: "map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart";
|
|
17033
16846
|
columns: string[] | {
|
|
17034
16847
|
field: string;
|
|
17035
16848
|
label?: string | undefined;
|
|
@@ -17045,8 +16858,55 @@ declare const HttpDelivery: Omit<{
|
|
|
17045
16858
|
link?: boolean | undefined;
|
|
17046
16859
|
action?: string | undefined;
|
|
17047
16860
|
}[];
|
|
17048
|
-
|
|
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;
|
|
17049
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;
|
|
17050
16910
|
data?: {
|
|
17051
16911
|
provider: "object";
|
|
17052
16912
|
object: string;
|
|
@@ -17074,77 +16934,42 @@ declare const HttpDelivery: Omit<{
|
|
|
17074
16934
|
schemaId: string;
|
|
17075
16935
|
schema?: Record<string, unknown> | undefined;
|
|
17076
16936
|
} | undefined;
|
|
17077
|
-
|
|
17078
|
-
|
|
17079
|
-
|
|
17080
|
-
|
|
17081
|
-
|
|
17082
|
-
|
|
17083
|
-
field: string;
|
|
17084
|
-
order: "asc" | "desc";
|
|
17085
|
-
}[] | undefined;
|
|
17086
|
-
searchableFields?: string[] | undefined;
|
|
17087
|
-
filterableFields?: string[] | undefined;
|
|
17088
|
-
userFilters?: {
|
|
17089
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
17090
|
-
fields?: {
|
|
17091
|
-
field: string;
|
|
17092
|
-
label?: string | undefined;
|
|
17093
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
17094
|
-
options?: {
|
|
17095
|
-
value: string | number | boolean;
|
|
17096
|
-
label: string;
|
|
17097
|
-
color?: string | undefined;
|
|
17098
|
-
}[] | undefined;
|
|
17099
|
-
showCount?: boolean | undefined;
|
|
17100
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
17101
|
-
}[] | undefined;
|
|
17102
|
-
tabs?: {
|
|
17103
|
-
name: string;
|
|
17104
|
-
pinned: boolean;
|
|
17105
|
-
isDefault: boolean;
|
|
17106
|
-
visible: boolean;
|
|
17107
|
-
label?: string | undefined;
|
|
17108
|
-
icon?: string | undefined;
|
|
17109
|
-
view?: string | undefined;
|
|
17110
|
-
filter?: {
|
|
17111
|
-
field: string;
|
|
17112
|
-
operator: string;
|
|
17113
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
17114
|
-
}[] | undefined;
|
|
17115
|
-
order?: number | undefined;
|
|
17116
|
-
}[] | undefined;
|
|
17117
|
-
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;
|
|
17118
16943
|
} | undefined;
|
|
16944
|
+
inlineEdit?: boolean | undefined;
|
|
16945
|
+
virtualScroll?: boolean | undefined;
|
|
17119
16946
|
resizable?: boolean | undefined;
|
|
17120
|
-
striped?: boolean | undefined;
|
|
17121
|
-
bordered?: boolean | undefined;
|
|
17122
|
-
compactToolbar?: boolean | undefined;
|
|
17123
|
-
selection?: {
|
|
17124
|
-
type: "none" | "multiple" | "single";
|
|
17125
|
-
} | undefined;
|
|
17126
|
-
navigation?: {
|
|
17127
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
17128
|
-
preventNavigation: boolean;
|
|
17129
|
-
openNewTab: boolean;
|
|
17130
|
-
view?: string | undefined;
|
|
17131
|
-
width?: string | number | undefined;
|
|
17132
|
-
} | undefined;
|
|
17133
|
-
pagination?: {
|
|
17134
|
-
pageSize: number;
|
|
17135
|
-
pageSizeOptions?: number[] | undefined;
|
|
17136
|
-
} | undefined;
|
|
17137
16947
|
kanban?: {
|
|
17138
16948
|
groupByField: string;
|
|
17139
16949
|
columns: string[];
|
|
17140
16950
|
summarizeField?: string | undefined;
|
|
17141
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;
|
|
17142
16959
|
calendar?: {
|
|
17143
16960
|
startDateField: string;
|
|
17144
16961
|
titleField: string;
|
|
17145
16962
|
endDateField?: string | undefined;
|
|
17146
16963
|
colorField?: string | undefined;
|
|
17147
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;
|
|
17148
16973
|
gantt?: {
|
|
17149
16974
|
[x: string]: unknown;
|
|
17150
16975
|
startDateField: string;
|
|
@@ -17176,40 +17001,40 @@ declare const HttpDelivery: Omit<{
|
|
|
17176
17001
|
}[] | undefined;
|
|
17177
17002
|
autoZoomToFilter?: boolean | undefined;
|
|
17178
17003
|
} | undefined;
|
|
17179
|
-
gallery?: {
|
|
17180
|
-
coverFit: "cover" | "contain";
|
|
17181
|
-
cardSize: "small" | "medium" | "large";
|
|
17182
|
-
coverField?: string | undefined;
|
|
17183
|
-
titleField?: string | undefined;
|
|
17184
|
-
visibleFields?: string[] | undefined;
|
|
17185
|
-
} | undefined;
|
|
17186
|
-
timeline?: {
|
|
17187
|
-
startDateField: string;
|
|
17188
|
-
titleField: string;
|
|
17189
|
-
scale: "day" | "week" | "month" | "quarter" | "year" | "hour";
|
|
17190
|
-
endDateField?: string | undefined;
|
|
17191
|
-
groupByField?: string | undefined;
|
|
17192
|
-
colorField?: string | undefined;
|
|
17193
|
-
} | undefined;
|
|
17194
17004
|
chart?: {
|
|
17195
17005
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
17196
17006
|
dataset: string;
|
|
17197
17007
|
values: string[];
|
|
17198
17008
|
dimensions?: string[] | undefined;
|
|
17199
17009
|
} | undefined;
|
|
17200
|
-
|
|
17201
|
-
|
|
17202
|
-
|
|
17203
|
-
|
|
17204
|
-
|
|
17205
|
-
|
|
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";
|
|
17206
17033
|
} | undefined;
|
|
17207
|
-
|
|
17208
|
-
|
|
17209
|
-
|
|
17210
|
-
lockedBy?: string | undefined;
|
|
17034
|
+
pagination?: {
|
|
17035
|
+
pageSize: number;
|
|
17036
|
+
pageSizeOptions?: number[] | undefined;
|
|
17211
17037
|
} | undefined;
|
|
17212
|
-
rowHeight?: "short" | "medium" | "compact" | "tall" | "extra_tall" | undefined;
|
|
17213
17038
|
grouping?: {
|
|
17214
17039
|
fields: {
|
|
17215
17040
|
field: string;
|
|
@@ -17226,7 +17051,6 @@ declare const HttpDelivery: Omit<{
|
|
|
17226
17051
|
rowActions?: string[] | undefined;
|
|
17227
17052
|
bulkActions?: string[] | undefined;
|
|
17228
17053
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
17229
|
-
virtualScroll?: boolean | undefined;
|
|
17230
17054
|
conditionalFormatting?: {
|
|
17231
17055
|
condition: {
|
|
17232
17056
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -17247,7 +17071,6 @@ declare const HttpDelivery: Omit<{
|
|
|
17247
17071
|
};
|
|
17248
17072
|
style: Record<string, string>;
|
|
17249
17073
|
}[] | undefined;
|
|
17250
|
-
inlineEdit?: boolean | undefined;
|
|
17251
17074
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
17252
17075
|
userActions?: {
|
|
17253
17076
|
sort: boolean;
|
|
@@ -17260,23 +17083,8 @@ declare const HttpDelivery: Omit<{
|
|
|
17260
17083
|
} | undefined;
|
|
17261
17084
|
appearance?: {
|
|
17262
17085
|
showDescription: boolean;
|
|
17263
|
-
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "
|
|
17086
|
+
allowedVisualizations?: ("map" | "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart")[] | undefined;
|
|
17264
17087
|
} | undefined;
|
|
17265
|
-
tabs?: {
|
|
17266
|
-
name: string;
|
|
17267
|
-
pinned: boolean;
|
|
17268
|
-
isDefault: boolean;
|
|
17269
|
-
visible: boolean;
|
|
17270
|
-
label?: string | undefined;
|
|
17271
|
-
icon?: string | undefined;
|
|
17272
|
-
view?: string | undefined;
|
|
17273
|
-
filter?: {
|
|
17274
|
-
field: string;
|
|
17275
|
-
operator: string;
|
|
17276
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
17277
|
-
}[] | undefined;
|
|
17278
|
-
order?: number | undefined;
|
|
17279
|
-
}[] | undefined;
|
|
17280
17088
|
addRecord?: {
|
|
17281
17089
|
enabled: boolean;
|
|
17282
17090
|
position: "top" | "bottom" | "both";
|
|
@@ -17290,31 +17098,6 @@ declare const HttpDelivery: Omit<{
|
|
|
17290
17098
|
message?: string | undefined;
|
|
17291
17099
|
icon?: string | undefined;
|
|
17292
17100
|
} | undefined;
|
|
17293
|
-
aria?: {
|
|
17294
|
-
ariaLabel?: string | undefined;
|
|
17295
|
-
ariaDescribedBy?: string | undefined;
|
|
17296
|
-
role?: string | undefined;
|
|
17297
|
-
} | undefined;
|
|
17298
|
-
responsive?: {
|
|
17299
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
17300
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
17301
|
-
columns?: {
|
|
17302
|
-
xs?: number | undefined;
|
|
17303
|
-
sm?: number | undefined;
|
|
17304
|
-
md?: number | undefined;
|
|
17305
|
-
lg?: number | undefined;
|
|
17306
|
-
xl?: number | undefined;
|
|
17307
|
-
'2xl'?: number | undefined;
|
|
17308
|
-
} | undefined;
|
|
17309
|
-
order?: {
|
|
17310
|
-
xs?: number | undefined;
|
|
17311
|
-
sm?: number | undefined;
|
|
17312
|
-
md?: number | undefined;
|
|
17313
|
-
lg?: number | undefined;
|
|
17314
|
-
xl?: number | undefined;
|
|
17315
|
-
'2xl'?: number | undefined;
|
|
17316
|
-
} | undefined;
|
|
17317
|
-
} | undefined;
|
|
17318
17101
|
performance?: {
|
|
17319
17102
|
lazyLoad?: boolean | undefined;
|
|
17320
17103
|
virtualScroll?: {
|
|
@@ -17482,7 +17265,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17482
17265
|
readonly displayNameField: "id";
|
|
17483
17266
|
readonly nameField: "id";
|
|
17484
17267
|
readonly titleFormat: "{label} → {url}";
|
|
17485
|
-
readonly
|
|
17268
|
+
readonly highlightFields: ["source", "url", "status", "attempts", "next_retry_at"];
|
|
17486
17269
|
readonly listViews: {
|
|
17487
17270
|
readonly recent: {
|
|
17488
17271
|
readonly type: "grid";
|
|
@@ -17586,7 +17369,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17586
17369
|
readonly inlineTitle?: string | undefined;
|
|
17587
17370
|
readonly inlineColumns?: any[] | undefined;
|
|
17588
17371
|
readonly inlineAmountField?: string | undefined;
|
|
17589
|
-
readonly relatedList?: boolean | undefined;
|
|
17372
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
17590
17373
|
readonly relatedListTitle?: string | undefined;
|
|
17591
17374
|
readonly relatedListColumns?: any[] | undefined;
|
|
17592
17375
|
readonly displayField?: string | undefined;
|
|
@@ -17760,7 +17543,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17760
17543
|
readonly inlineTitle?: string | undefined;
|
|
17761
17544
|
readonly inlineColumns?: any[] | undefined;
|
|
17762
17545
|
readonly inlineAmountField?: string | undefined;
|
|
17763
|
-
readonly relatedList?: boolean | undefined;
|
|
17546
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
17764
17547
|
readonly relatedListTitle?: string | undefined;
|
|
17765
17548
|
readonly relatedListColumns?: any[] | undefined;
|
|
17766
17549
|
readonly displayField?: string | undefined;
|
|
@@ -17934,7 +17717,7 @@ declare const HttpDelivery: Omit<{
|
|
|
17934
17717
|
readonly inlineTitle?: string | undefined;
|
|
17935
17718
|
readonly inlineColumns?: any[] | undefined;
|
|
17936
17719
|
readonly inlineAmountField?: string | undefined;
|
|
17937
|
-
readonly relatedList?: boolean | undefined;
|
|
17720
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
17938
17721
|
readonly relatedListTitle?: string | undefined;
|
|
17939
17722
|
readonly relatedListColumns?: any[] | undefined;
|
|
17940
17723
|
readonly displayField?: string | undefined;
|
|
@@ -18108,7 +17891,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18108
17891
|
readonly inlineTitle?: string | undefined;
|
|
18109
17892
|
readonly inlineColumns?: any[] | undefined;
|
|
18110
17893
|
readonly inlineAmountField?: string | undefined;
|
|
18111
|
-
readonly relatedList?: boolean | undefined;
|
|
17894
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
18112
17895
|
readonly relatedListTitle?: string | undefined;
|
|
18113
17896
|
readonly relatedListColumns?: any[] | undefined;
|
|
18114
17897
|
readonly displayField?: string | undefined;
|
|
@@ -18282,7 +18065,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18282
18065
|
readonly inlineTitle?: string | undefined;
|
|
18283
18066
|
readonly inlineColumns?: any[] | undefined;
|
|
18284
18067
|
readonly inlineAmountField?: string | undefined;
|
|
18285
|
-
readonly relatedList?: boolean | undefined;
|
|
18068
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
18286
18069
|
readonly relatedListTitle?: string | undefined;
|
|
18287
18070
|
readonly relatedListColumns?: any[] | undefined;
|
|
18288
18071
|
readonly displayField?: string | undefined;
|
|
@@ -18456,7 +18239,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18456
18239
|
readonly inlineTitle?: string | undefined;
|
|
18457
18240
|
readonly inlineColumns?: any[] | undefined;
|
|
18458
18241
|
readonly inlineAmountField?: string | undefined;
|
|
18459
|
-
readonly relatedList?: boolean | undefined;
|
|
18242
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
18460
18243
|
readonly relatedListTitle?: string | undefined;
|
|
18461
18244
|
readonly relatedListColumns?: any[] | undefined;
|
|
18462
18245
|
readonly displayField?: string | undefined;
|
|
@@ -18630,7 +18413,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18630
18413
|
readonly inlineTitle?: string | undefined;
|
|
18631
18414
|
readonly inlineColumns?: any[] | undefined;
|
|
18632
18415
|
readonly inlineAmountField?: string | undefined;
|
|
18633
|
-
readonly relatedList?: boolean | undefined;
|
|
18416
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
18634
18417
|
readonly relatedListTitle?: string | undefined;
|
|
18635
18418
|
readonly relatedListColumns?: any[] | undefined;
|
|
18636
18419
|
readonly displayField?: string | undefined;
|
|
@@ -18804,7 +18587,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18804
18587
|
readonly inlineTitle?: string | undefined;
|
|
18805
18588
|
readonly inlineColumns?: any[] | undefined;
|
|
18806
18589
|
readonly inlineAmountField?: string | undefined;
|
|
18807
|
-
readonly relatedList?: boolean | undefined;
|
|
18590
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
18808
18591
|
readonly relatedListTitle?: string | undefined;
|
|
18809
18592
|
readonly relatedListColumns?: any[] | undefined;
|
|
18810
18593
|
readonly displayField?: string | undefined;
|
|
@@ -18978,7 +18761,7 @@ declare const HttpDelivery: Omit<{
|
|
|
18978
18761
|
readonly inlineTitle?: string | undefined;
|
|
18979
18762
|
readonly inlineColumns?: any[] | undefined;
|
|
18980
18763
|
readonly inlineAmountField?: string | undefined;
|
|
18981
|
-
readonly relatedList?: boolean | undefined;
|
|
18764
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
18982
18765
|
readonly relatedListTitle?: string | undefined;
|
|
18983
18766
|
readonly relatedListColumns?: any[] | undefined;
|
|
18984
18767
|
readonly displayField?: string | undefined;
|
|
@@ -19152,7 +18935,7 @@ declare const HttpDelivery: Omit<{
|
|
|
19152
18935
|
readonly inlineTitle?: string | undefined;
|
|
19153
18936
|
readonly inlineColumns?: any[] | undefined;
|
|
19154
18937
|
readonly inlineAmountField?: string | undefined;
|
|
19155
|
-
readonly relatedList?: boolean | undefined;
|
|
18938
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
19156
18939
|
readonly relatedListTitle?: string | undefined;
|
|
19157
18940
|
readonly relatedListColumns?: any[] | undefined;
|
|
19158
18941
|
readonly displayField?: string | undefined;
|
|
@@ -19326,7 +19109,7 @@ declare const HttpDelivery: Omit<{
|
|
|
19326
19109
|
readonly inlineTitle?: string | undefined;
|
|
19327
19110
|
readonly inlineColumns?: any[] | undefined;
|
|
19328
19111
|
readonly inlineAmountField?: string | undefined;
|
|
19329
|
-
readonly relatedList?: boolean | undefined;
|
|
19112
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
19330
19113
|
readonly relatedListTitle?: string | undefined;
|
|
19331
19114
|
readonly relatedListColumns?: any[] | undefined;
|
|
19332
19115
|
readonly displayField?: string | undefined;
|
|
@@ -19500,7 +19283,7 @@ declare const HttpDelivery: Omit<{
|
|
|
19500
19283
|
readonly inlineTitle?: string | undefined;
|
|
19501
19284
|
readonly inlineColumns?: any[] | undefined;
|
|
19502
19285
|
readonly inlineAmountField?: string | undefined;
|
|
19503
|
-
readonly relatedList?: boolean | undefined;
|
|
19286
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
19504
19287
|
readonly relatedListTitle?: string | undefined;
|
|
19505
19288
|
readonly relatedListColumns?: any[] | undefined;
|
|
19506
19289
|
readonly displayField?: string | undefined;
|
|
@@ -19674,7 +19457,7 @@ declare const HttpDelivery: Omit<{
|
|
|
19674
19457
|
readonly inlineTitle?: string | undefined;
|
|
19675
19458
|
readonly inlineColumns?: any[] | undefined;
|
|
19676
19459
|
readonly inlineAmountField?: string | undefined;
|
|
19677
|
-
readonly relatedList?: boolean | undefined;
|
|
19460
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
19678
19461
|
readonly relatedListTitle?: string | undefined;
|
|
19679
19462
|
readonly relatedListColumns?: any[] | undefined;
|
|
19680
19463
|
readonly displayField?: string | undefined;
|
|
@@ -19848,7 +19631,7 @@ declare const HttpDelivery: Omit<{
|
|
|
19848
19631
|
readonly inlineTitle?: string | undefined;
|
|
19849
19632
|
readonly inlineColumns?: any[] | undefined;
|
|
19850
19633
|
readonly inlineAmountField?: string | undefined;
|
|
19851
|
-
readonly relatedList?: boolean | undefined;
|
|
19634
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
19852
19635
|
readonly relatedListTitle?: string | undefined;
|
|
19853
19636
|
readonly relatedListColumns?: any[] | undefined;
|
|
19854
19637
|
readonly displayField?: string | undefined;
|
|
@@ -20022,7 +19805,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20022
19805
|
readonly inlineTitle?: string | undefined;
|
|
20023
19806
|
readonly inlineColumns?: any[] | undefined;
|
|
20024
19807
|
readonly inlineAmountField?: string | undefined;
|
|
20025
|
-
readonly relatedList?: boolean | undefined;
|
|
19808
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
20026
19809
|
readonly relatedListTitle?: string | undefined;
|
|
20027
19810
|
readonly relatedListColumns?: any[] | undefined;
|
|
20028
19811
|
readonly displayField?: string | undefined;
|
|
@@ -20196,7 +19979,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20196
19979
|
readonly inlineTitle?: string | undefined;
|
|
20197
19980
|
readonly inlineColumns?: any[] | undefined;
|
|
20198
19981
|
readonly inlineAmountField?: string | undefined;
|
|
20199
|
-
readonly relatedList?: boolean | undefined;
|
|
19982
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
20200
19983
|
readonly relatedListTitle?: string | undefined;
|
|
20201
19984
|
readonly relatedListColumns?: any[] | undefined;
|
|
20202
19985
|
readonly displayField?: string | undefined;
|
|
@@ -20370,7 +20153,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20370
20153
|
readonly inlineTitle?: string | undefined;
|
|
20371
20154
|
readonly inlineColumns?: any[] | undefined;
|
|
20372
20155
|
readonly inlineAmountField?: string | undefined;
|
|
20373
|
-
readonly relatedList?: boolean | undefined;
|
|
20156
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
20374
20157
|
readonly relatedListTitle?: string | undefined;
|
|
20375
20158
|
readonly relatedListColumns?: any[] | undefined;
|
|
20376
20159
|
readonly displayField?: string | undefined;
|
|
@@ -20544,7 +20327,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20544
20327
|
readonly inlineTitle?: string | undefined;
|
|
20545
20328
|
readonly inlineColumns?: any[] | undefined;
|
|
20546
20329
|
readonly inlineAmountField?: string | undefined;
|
|
20547
|
-
readonly relatedList?: boolean | undefined;
|
|
20330
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
20548
20331
|
readonly relatedListTitle?: string | undefined;
|
|
20549
20332
|
readonly relatedListColumns?: any[] | undefined;
|
|
20550
20333
|
readonly displayField?: string | undefined;
|
|
@@ -20718,7 +20501,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20718
20501
|
readonly inlineTitle?: string | undefined;
|
|
20719
20502
|
readonly inlineColumns?: any[] | undefined;
|
|
20720
20503
|
readonly inlineAmountField?: string | undefined;
|
|
20721
|
-
readonly relatedList?: boolean | undefined;
|
|
20504
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
20722
20505
|
readonly relatedListTitle?: string | undefined;
|
|
20723
20506
|
readonly relatedListColumns?: any[] | undefined;
|
|
20724
20507
|
readonly displayField?: string | undefined;
|
|
@@ -20892,7 +20675,7 @@ declare const HttpDelivery: Omit<{
|
|
|
20892
20675
|
readonly inlineTitle?: string | undefined;
|
|
20893
20676
|
readonly inlineColumns?: any[] | undefined;
|
|
20894
20677
|
readonly inlineAmountField?: string | undefined;
|
|
20895
|
-
readonly relatedList?: boolean | undefined;
|
|
20678
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
20896
20679
|
readonly relatedListTitle?: string | undefined;
|
|
20897
20680
|
readonly relatedListColumns?: any[] | undefined;
|
|
20898
20681
|
readonly displayField?: string | undefined;
|
|
@@ -21066,7 +20849,7 @@ declare const HttpDelivery: Omit<{
|
|
|
21066
20849
|
readonly inlineTitle?: string | undefined;
|
|
21067
20850
|
readonly inlineColumns?: any[] | undefined;
|
|
21068
20851
|
readonly inlineAmountField?: string | undefined;
|
|
21069
|
-
readonly relatedList?: boolean | undefined;
|
|
20852
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
21070
20853
|
readonly relatedListTitle?: string | undefined;
|
|
21071
20854
|
readonly relatedListColumns?: any[] | undefined;
|
|
21072
20855
|
readonly displayField?: string | undefined;
|
|
@@ -21240,7 +21023,7 @@ declare const HttpDelivery: Omit<{
|
|
|
21240
21023
|
readonly inlineTitle?: string | undefined;
|
|
21241
21024
|
readonly inlineColumns?: any[] | undefined;
|
|
21242
21025
|
readonly inlineAmountField?: string | undefined;
|
|
21243
|
-
readonly relatedList?: boolean | undefined;
|
|
21026
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
21244
21027
|
readonly relatedListTitle?: string | undefined;
|
|
21245
21028
|
readonly relatedListColumns?: any[] | undefined;
|
|
21246
21029
|
readonly displayField?: string | undefined;
|
|
@@ -21414,7 +21197,7 @@ declare const HttpDelivery: Omit<{
|
|
|
21414
21197
|
readonly inlineTitle?: string | undefined;
|
|
21415
21198
|
readonly inlineColumns?: any[] | undefined;
|
|
21416
21199
|
readonly inlineAmountField?: string | undefined;
|
|
21417
|
-
readonly relatedList?: boolean | undefined;
|
|
21200
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
21418
21201
|
readonly relatedListTitle?: string | undefined;
|
|
21419
21202
|
readonly relatedListColumns?: any[] | undefined;
|
|
21420
21203
|
readonly displayField?: string | undefined;
|