@salesforce/lds-adapters-community-seo 1.261.0 → 1.262.1
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 +7 -6
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.1",
|
|
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.1"
|
|
48
47
|
},
|
|
49
48
|
"devDependencies": {
|
|
50
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
51
|
-
"@salesforce/lds-karma": "^1.
|
|
49
|
+
"@salesforce/lds-compiler-plugins": "^1.262.1",
|
|
50
|
+
"@salesforce/lds-karma": "^1.262.1"
|
|
52
51
|
},
|
|
53
52
|
"nx": {
|
|
54
53
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -313,7 +313,11 @@ 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
|
+
};
|
|
317
321
|
// Notify Update Available
|
|
318
322
|
function bindExportsTo(luvio) {
|
|
319
323
|
// LDS Adapters
|
|
@@ -326,11 +330,8 @@ function bindExportsTo(luvio) {
|
|
|
326
330
|
};
|
|
327
331
|
}
|
|
328
332
|
withDefaultLuvio((luvio) => {
|
|
329
|
-
({
|
|
330
|
-
getRecordSeoProperties,
|
|
331
|
-
getRecordSeoProperties_imperative,
|
|
332
|
-
} = bindExportsTo(luvio));
|
|
333
|
+
({ getRecordSeoProperties, getRecordSeoProperties_imperative } = bindExportsTo(luvio));
|
|
333
334
|
});
|
|
334
335
|
|
|
335
336
|
export { getRecordSeoProperties, getRecordSeoProperties_imperative };
|
|
336
|
-
// version: 1.
|
|
337
|
+
// version: 1.262.1-9a1924e93
|