@salesforce/lds-adapters-platform-sharing 1.301.0 → 1.302.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.
|
@@ -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 = "c0ac5d8d06f812b5a1744e0f3d2c57d3";
|
|
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: FilterCriteriaInputRepresentation, existing: FilterCriteriaInputRepresentationNormalized, path: $64$luvio_engine_IngestPath, luvio: $64$luvio_engine_Luvio, store: $64$luvio_engine_Store, timestamp: number): FilterCriteriaInputRepresentationNormalized;
|
|
@@ -18,6 +18,8 @@ export interface FilterCriteriaInputRepresentationNormalized {
|
|
|
18
18
|
isMemberOfGroup: boolean;
|
|
19
19
|
/** Member Type */
|
|
20
20
|
memberType: string;
|
|
21
|
+
/** Filters the members based on Search Term, is useful only in case of Search Operation */
|
|
22
|
+
searchTerm: string;
|
|
21
23
|
}
|
|
22
24
|
/**
|
|
23
25
|
* Input representation for Filter Criteria.
|
|
@@ -28,4 +30,5 @@ export interface FilterCriteriaInputRepresentationNormalized {
|
|
|
28
30
|
export interface FilterCriteriaInputRepresentation {
|
|
29
31
|
isMemberOfGroup: boolean;
|
|
30
32
|
memberType: string;
|
|
33
|
+
searchTerm: string;
|
|
31
34
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-platform-sharing",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.302.0",
|
|
4
4
|
"description": "Sharing",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/platform-sharing.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.302.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.302.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -2715,4 +2715,4 @@ withDefaultLuvio((luvio) => {
|
|
|
2715
2715
|
});
|
|
2716
2716
|
|
|
2717
2717
|
export { getAllSobjects, getAllSobjects_imperative, getGroupsForUser, getGroupsForUser_imperative, getPublicGroupMembershipDetails, getPublicGroupMembershipDetails_imperative, getPublicGroupShareData, getPublicGroupShareData_imperative, getUserPermissions, getUserPermissions_imperative };
|
|
2718
|
-
// version: 1.
|
|
2718
|
+
// version: 1.302.0-5fb014108f
|
package/src/raml/api.raml
CHANGED
|
@@ -68,6 +68,10 @@ types:
|
|
|
68
68
|
memberType:
|
|
69
69
|
description: Member Type
|
|
70
70
|
type: string
|
|
71
|
+
searchTerm:
|
|
72
|
+
description: 'Filters the members based on Search Term, is useful only in
|
|
73
|
+
case of Search Operation'
|
|
74
|
+
type: string
|
|
71
75
|
GroupCollectionRepresentation:
|
|
72
76
|
description: Representation of a collection of Groups that includes Queues and
|
|
73
77
|
Public Group Types.
|