@salesforce/lds-adapters-uiapi 1.343.0 → 1.345.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/es/es2018/types/src/__performance__/utils/runMeasurement.d.ts +8 -2
- package/dist/es/es2018/types/src/__performance__/utils/sqliteDurableStore.d.ts +6 -8
- package/dist/es/es2018/types/src/generated/types/ListObjectColumnRepresentation.d.ts +11 -1
- package/dist/es/es2018/types/src/generated/types/ListObjectQuickFilterOverridesRepresentation.d.ts +35 -0
- package/dist/es/es2018/uiapi-records-service.js +830 -635
- package/package.json +6 -7
- package/sfdc/graphqlAdapters.js +13 -9
- package/sfdc/index.js +799 -608
- package/sfdc/uiapi-static-functions.js +1 -1
- package/src/raml/api.raml +24 -0
|
@@ -95,7 +95,7 @@ var TypeCheckShapes;
|
|
|
95
95
|
TypeCheckShapes[TypeCheckShapes["Integer"] = 3] = "Integer";
|
|
96
96
|
TypeCheckShapes[TypeCheckShapes["Unsupported"] = 4] = "Unsupported";
|
|
97
97
|
})(TypeCheckShapes || (TypeCheckShapes = {}));
|
|
98
|
-
// engine version: 0.156.
|
|
98
|
+
// engine version: 0.156.6-042d5d87
|
|
99
99
|
|
|
100
100
|
const { keys: ObjectKeys, create: ObjectCreate } = Object;
|
|
101
101
|
|
package/src/raml/api.raml
CHANGED
|
@@ -1844,6 +1844,15 @@ types:
|
|
|
1844
1844
|
type: array
|
|
1845
1845
|
items:
|
|
1846
1846
|
type: ListObjectPicklistValueRepresentation
|
|
1847
|
+
quickFilterOperator:
|
|
1848
|
+
description: The operator to use for quick filters on this column.
|
|
1849
|
+
type: string | nil
|
|
1850
|
+
quickFilterOverrides:
|
|
1851
|
+
description: Optional overrides to use for quick filters on this column.
|
|
1852
|
+
type: ListObjectQuickFilterOverridesRepresentation | nil
|
|
1853
|
+
quickFilterable:
|
|
1854
|
+
description: Whether or not this column supports quick filters.
|
|
1855
|
+
type: boolean
|
|
1847
1856
|
sortable:
|
|
1848
1857
|
description: Whether or not this column is sortable.
|
|
1849
1858
|
type: boolean
|
|
@@ -1903,6 +1912,21 @@ types:
|
|
|
1903
1912
|
label:
|
|
1904
1913
|
description: The label name for this picklist value.
|
|
1905
1914
|
type: string
|
|
1915
|
+
ListObjectQuickFilterOverridesRepresentation:
|
|
1916
|
+
description: ListObjectQuickFilterOverridesRepresentation
|
|
1917
|
+
type: object
|
|
1918
|
+
properties:
|
|
1919
|
+
dataType:
|
|
1920
|
+
description: The type to use for quick filters for the column.
|
|
1921
|
+
type: string | nil
|
|
1922
|
+
picklistValues:
|
|
1923
|
+
description: The picklist values to use during quick filters for this column.
|
|
1924
|
+
type: array
|
|
1925
|
+
items:
|
|
1926
|
+
type: object
|
|
1927
|
+
properties:
|
|
1928
|
+
//:
|
|
1929
|
+
type: string
|
|
1906
1930
|
ListObjectScopeAvailableEntityRepresentation:
|
|
1907
1931
|
description: ListObjectScopeAvailableEntityRepresentation
|
|
1908
1932
|
type: object
|