@salesforce/lds-adapters-community-seo 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-seo",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "APIs for various SEO features in experiences",
|
|
6
6
|
"main": "dist/es/es2018/community-seo.js",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-community-seo"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@salesforce/lds-bindings": "^1.
|
|
47
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
51
|
-
"@salesforce/lds-karma": "^1.
|
|
50
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
51
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
52
52
|
},
|
|
53
53
|
"nx": {
|
|
54
54
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -314,21 +314,23 @@ let getRecordSeoProperties;
|
|
|
314
314
|
let getRecordSeoProperties_imperative;
|
|
315
315
|
// Adapter Metadata
|
|
316
316
|
const getRecordSeoPropertiesMetadata = { apiFamily: 'CommunitiesSeo', name: 'getRecordSeoProperties', ttl: 3600000 };
|
|
317
|
+
// Notify Update Available
|
|
317
318
|
function bindExportsTo(luvio) {
|
|
318
319
|
// LDS Adapters
|
|
319
320
|
const getRecordSeoProperties_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRecordSeoProperties', getRecordSeoPropertiesAdapterFactory), getRecordSeoPropertiesMetadata);
|
|
320
321
|
return {
|
|
321
322
|
getRecordSeoProperties: createWireAdapterConstructor(luvio, getRecordSeoProperties_ldsAdapter, getRecordSeoPropertiesMetadata),
|
|
322
323
|
// Imperative GET Adapters
|
|
323
|
-
getRecordSeoProperties_imperative: createImperativeAdapter(luvio, getRecordSeoProperties_ldsAdapter, getRecordSeoPropertiesMetadata)
|
|
324
|
+
getRecordSeoProperties_imperative: createImperativeAdapter(luvio, getRecordSeoProperties_ldsAdapter, getRecordSeoPropertiesMetadata),
|
|
325
|
+
// Notify Update Availables
|
|
324
326
|
};
|
|
325
327
|
}
|
|
326
328
|
withDefaultLuvio((luvio) => {
|
|
327
329
|
({
|
|
328
330
|
getRecordSeoProperties,
|
|
329
|
-
getRecordSeoProperties_imperative
|
|
331
|
+
getRecordSeoProperties_imperative,
|
|
330
332
|
} = bindExportsTo(luvio));
|
|
331
333
|
});
|
|
332
334
|
|
|
333
335
|
export { getRecordSeoProperties, getRecordSeoProperties_imperative };
|
|
334
|
-
// version: 1.
|
|
336
|
+
// version: 1.261.0-10ee630e7
|