@salesforce/lds-adapters-industries-actionablelist 1.220.0 → 1.221.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/generated/types/ActionableListFilterInputRepresentation.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IngestPath as $64$luvio_engine_IngestPath, Luvio as $64$luvio_engine_Luvio, Store as $64$luvio_engine_Store, FragmentSelection as $64$luvio_engine_FragmentSelection, ResourceIngest as $64$luvio_engine_ResourceIngest, DurableStoreKeyMetadataMap as $64$luvio_engine_DurableStoreKeyMetadataMap, NormalizedKeyMetadata as $64$luvio_engine_NormalizedKeyMetadata } from '@luvio/engine';
|
|
2
|
-
export declare const VERSION = "
|
|
2
|
+
export declare const VERSION = "69a8d31b0ae923ae75e844824817b513";
|
|
3
3
|
export declare function validate(obj: any, path?: string): TypeError | null;
|
|
4
4
|
export declare const RepresentationType: string;
|
|
5
5
|
export declare function normalize(input: ActionableListFilterInputRepresentation, existing: ActionableListFilterInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): ActionableListFilterInputRepresentationNormalized;
|
|
@@ -14,6 +14,8 @@ export declare function getTypeCacheKeys(rootKeySet: $64$luvio_engine_DurableSto
|
|
|
14
14
|
* (none)
|
|
15
15
|
*/
|
|
16
16
|
export interface ActionableListFilterInputRepresentationNormalized {
|
|
17
|
+
/** Id of Column to be filtered */
|
|
18
|
+
columnId?: string | null;
|
|
17
19
|
/** Name of Column to be filtered */
|
|
18
20
|
columnName?: string | null;
|
|
19
21
|
/** data domain of filter column */
|
|
@@ -30,6 +32,7 @@ export interface ActionableListFilterInputRepresentationNormalized {
|
|
|
30
32
|
* (none)
|
|
31
33
|
*/
|
|
32
34
|
export interface ActionableListFilterInputRepresentation {
|
|
35
|
+
columnId?: string | null;
|
|
33
36
|
columnName?: string | null;
|
|
34
37
|
dataDomain?: string | null;
|
|
35
38
|
operator?: string | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-actionablelist",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.221.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Wire adapter for actionable list connect APIs",
|
|
6
6
|
"main": "dist/es/es2018/industries-actionablelist.js",
|
package/sfdc/index.js
CHANGED
|
@@ -4033,4 +4033,4 @@ withDefaultLuvio((luvio) => {
|
|
|
4033
4033
|
});
|
|
4034
4034
|
|
|
4035
4035
|
export { createActionableListDefinition, getActionableListDatasetInfo, getActionableListDatasetInfo_imperative, getActionableListDefinitions, getActionableListDefinitions_imperative, getActionableListMembers, getActionableListMembers_imperative, upsertActionableList, upsertActionableListDatasetColumnUser, upsertActionableListRefreshFilter };
|
|
4036
|
-
// version: 1.
|
|
4036
|
+
// version: 1.221.0-a9e832603
|
package/src/raml/api.raml
CHANGED
|
@@ -320,6 +320,10 @@ types:
|
|
|
320
320
|
description: Input representation for actionable list Filters.
|
|
321
321
|
type: object
|
|
322
322
|
properties:
|
|
323
|
+
columnId:
|
|
324
|
+
description: Id of Column to be filtered
|
|
325
|
+
type: string | nil
|
|
326
|
+
required: false # TODO handrolled W-9314597
|
|
323
327
|
columnName:
|
|
324
328
|
description: Name of Column to be filtered
|
|
325
329
|
type: string | nil
|