@salesforce/lds-adapters-community-seo 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 +10 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-community-seo",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.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",
|
|
@@ -39,16 +39,15 @@
|
|
|
39
39
|
"build:services": "rollup --bundleConfigAsCjs --config rollup.config.js",
|
|
40
40
|
"start": "nx build:karma && karma start",
|
|
41
41
|
"test": "nx build:karma && karma start --single-run",
|
|
42
|
-
"test:compat": "nx build:karma && karma start --single-run --compat",
|
|
43
42
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --adapter=lds-adapters-community-seo",
|
|
44
43
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-community-seo"
|
|
45
44
|
},
|
|
46
45
|
"dependencies": {
|
|
47
|
-
"@salesforce/lds-bindings": "^1.
|
|
46
|
+
"@salesforce/lds-bindings": "^1.262.0"
|
|
48
47
|
},
|
|
49
48
|
"devDependencies": {
|
|
50
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
51
|
-
"@salesforce/lds-karma": "^1.
|
|
49
|
+
"@salesforce/lds-compiler-plugins": "^1.262.0",
|
|
50
|
+
"@salesforce/lds-karma": "^1.262.0"
|
|
52
51
|
},
|
|
53
52
|
"nx": {
|
|
54
53
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -313,22 +313,25 @@ let getRecordSeoProperties;
|
|
|
313
313
|
// Imperative GET Adapters
|
|
314
314
|
let getRecordSeoProperties_imperative;
|
|
315
315
|
// Adapter Metadata
|
|
316
|
-
const getRecordSeoPropertiesMetadata = {
|
|
316
|
+
const getRecordSeoPropertiesMetadata = {
|
|
317
|
+
apiFamily: 'CommunitiesSeo',
|
|
318
|
+
name: 'getRecordSeoProperties',
|
|
319
|
+
ttl: 3600000,
|
|
320
|
+
};
|
|
321
|
+
// Notify Update Available
|
|
317
322
|
function bindExportsTo(luvio) {
|
|
318
323
|
// LDS Adapters
|
|
319
324
|
const getRecordSeoProperties_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getRecordSeoProperties', getRecordSeoPropertiesAdapterFactory), getRecordSeoPropertiesMetadata);
|
|
320
325
|
return {
|
|
321
326
|
getRecordSeoProperties: createWireAdapterConstructor(luvio, getRecordSeoProperties_ldsAdapter, getRecordSeoPropertiesMetadata),
|
|
322
327
|
// Imperative GET Adapters
|
|
323
|
-
getRecordSeoProperties_imperative: createImperativeAdapter(luvio, getRecordSeoProperties_ldsAdapter, getRecordSeoPropertiesMetadata)
|
|
328
|
+
getRecordSeoProperties_imperative: createImperativeAdapter(luvio, getRecordSeoProperties_ldsAdapter, getRecordSeoPropertiesMetadata),
|
|
329
|
+
// Notify Update Availables
|
|
324
330
|
};
|
|
325
331
|
}
|
|
326
332
|
withDefaultLuvio((luvio) => {
|
|
327
|
-
({
|
|
328
|
-
getRecordSeoProperties,
|
|
329
|
-
getRecordSeoProperties_imperative
|
|
330
|
-
} = bindExportsTo(luvio));
|
|
333
|
+
({ getRecordSeoProperties, getRecordSeoProperties_imperative } = bindExportsTo(luvio));
|
|
331
334
|
});
|
|
332
335
|
|
|
333
336
|
export { getRecordSeoProperties, getRecordSeoProperties_imperative };
|
|
334
|
-
// version: 1.
|
|
337
|
+
// version: 1.262.0-d3c071fdc
|