@salesforce/lds-adapters-community-info 1.260.0 → 1.262.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 -5
- package/sfdc/index.js +5 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-community-info",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.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",
|
|
@@ -41,15 +41,14 @@
|
|
|
41
41
|
"release:corejar": "yarn build && packages/core-build/scripts/core.js --adapter=lds-adapters-community-info",
|
|
42
42
|
"start": "nx build:karma && karma start",
|
|
43
43
|
"test": "nx build:karma && karma start --single-run",
|
|
44
|
-
"test:compat": "nx build:karma && karma start --single-run --compat",
|
|
45
44
|
"test:unit": "jest"
|
|
46
45
|
},
|
|
47
46
|
"dependencies": {
|
|
48
|
-
"@salesforce/lds-bindings": "^1.
|
|
47
|
+
"@salesforce/lds-bindings": "^1.262.0"
|
|
49
48
|
},
|
|
50
49
|
"devDependencies": {
|
|
51
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
52
|
-
"@salesforce/lds-karma": "^1.
|
|
50
|
+
"@salesforce/lds-compiler-plugins": "^1.262.0",
|
|
51
|
+
"@salesforce/lds-karma": "^1.262.0"
|
|
53
52
|
},
|
|
54
53
|
"nx": {
|
|
55
54
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -1095,21 +1095,20 @@ 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
|
-
({
|
|
1109
|
-
getCommunity,
|
|
1110
|
-
getCommunity_imperative
|
|
1111
|
-
} = bindExportsTo(luvio));
|
|
1110
|
+
({ getCommunity, getCommunity_imperative } = bindExportsTo(luvio));
|
|
1112
1111
|
});
|
|
1113
1112
|
|
|
1114
1113
|
export { getCommunity, getCommunity_imperative };
|
|
1115
|
-
// version: 1.
|
|
1114
|
+
// version: 1.262.0-d3c071fdc
|