@salesforce/lds-adapters-industries-featurevalidation 1.261.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.
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
declare let featureValidation: any;
|
|
2
|
-
export { featureValidation
|
|
2
|
+
export { featureValidation };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-featurevalidation",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.0",
|
|
4
4
|
"description": "Feature validation tool to debug setup issues.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/umd/es2018/industries-featurevalidation.js",
|
|
@@ -40,15 +40,14 @@
|
|
|
40
40
|
"release:core": "../../scripts/release/core.js --adapter=lds-adapters-industries-featurevalidation",
|
|
41
41
|
"release:corejar": "yarn build && ../core-build/scripts/core.js --adapter=lds-adapters-industries-featurevalidation",
|
|
42
42
|
"start": "nx build:karma && karma start",
|
|
43
|
-
"test": "nx build:karma && karma start --single-run"
|
|
44
|
-
"test:compat": "nx build:karma && karma start --single-run --compat"
|
|
43
|
+
"test": "nx build:karma && karma start --single-run"
|
|
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
|
@@ -518,9 +518,10 @@ const featureValidationAdapterFactory = (luvio) => {
|
|
|
518
518
|
let featureValidation;
|
|
519
519
|
// Notify Update Available
|
|
520
520
|
function bindExportsTo(luvio) {
|
|
521
|
+
// LDS Adapters
|
|
521
522
|
function unwrapSnapshotData(factory) {
|
|
522
523
|
const adapter = factory(luvio);
|
|
523
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
524
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
524
525
|
}
|
|
525
526
|
return {
|
|
526
527
|
featureValidation: unwrapSnapshotData(featureValidationAdapterFactory),
|
|
@@ -529,10 +530,8 @@ function bindExportsTo(luvio) {
|
|
|
529
530
|
};
|
|
530
531
|
}
|
|
531
532
|
withDefaultLuvio((luvio) => {
|
|
532
|
-
({
|
|
533
|
-
featureValidation,
|
|
534
|
-
} = bindExportsTo(luvio));
|
|
533
|
+
({ featureValidation } = bindExportsTo(luvio));
|
|
535
534
|
});
|
|
536
535
|
|
|
537
536
|
export { featureValidation };
|
|
538
|
-
// version: 1.
|
|
537
|
+
// version: 1.262.0-d3c071fdc
|