@salesforce/lds-adapters-community-info 1.260.0 → 1.261.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/package.json +4 -4
- package/sfdc/index.js +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-community-info",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Gets info about the community",
|
|
6
6
|
"main": "dist/es/es2018/community-info.js",
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
"test:unit": "jest"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@salesforce/lds-bindings": "^1.
|
|
48
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
52
|
-
"@salesforce/lds-karma": "^1.
|
|
51
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
52
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
53
53
|
},
|
|
54
54
|
"nx": {
|
|
55
55
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -1095,21 +1095,23 @@ let getCommunity;
|
|
|
1095
1095
|
let getCommunity_imperative;
|
|
1096
1096
|
// Adapter Metadata
|
|
1097
1097
|
const getCommunityMetadata = { apiFamily: 'CommunityInfo', name: 'getCommunity', ttl: 3600000 };
|
|
1098
|
+
// Notify Update Available
|
|
1098
1099
|
function bindExportsTo(luvio) {
|
|
1099
1100
|
// LDS Adapters
|
|
1100
1101
|
const getCommunity_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getCommunity', getCommunityAdapterFactory), getCommunityMetadata);
|
|
1101
1102
|
return {
|
|
1102
1103
|
getCommunity: createWireAdapterConstructor(luvio, getCommunity_ldsAdapter, getCommunityMetadata),
|
|
1103
1104
|
// Imperative GET Adapters
|
|
1104
|
-
getCommunity_imperative: createImperativeAdapter(luvio, getCommunity_ldsAdapter, getCommunityMetadata)
|
|
1105
|
+
getCommunity_imperative: createImperativeAdapter(luvio, getCommunity_ldsAdapter, getCommunityMetadata),
|
|
1106
|
+
// Notify Update Availables
|
|
1105
1107
|
};
|
|
1106
1108
|
}
|
|
1107
1109
|
withDefaultLuvio((luvio) => {
|
|
1108
1110
|
({
|
|
1109
1111
|
getCommunity,
|
|
1110
|
-
getCommunity_imperative
|
|
1112
|
+
getCommunity_imperative,
|
|
1111
1113
|
} = bindExportsTo(luvio));
|
|
1112
1114
|
});
|
|
1113
1115
|
|
|
1114
1116
|
export { getCommunity, getCommunity_imperative };
|
|
1115
|
-
// version: 1.
|
|
1117
|
+
// version: 1.261.0-10ee630e7
|