@salesforce/lds-adapters-industries-featurevalidation 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.
|
@@ -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
|
@@ -516,21 +516,22 @@ const featureValidationAdapterFactory = (luvio) => {
|
|
|
516
516
|
};
|
|
517
517
|
|
|
518
518
|
let featureValidation;
|
|
519
|
+
// Notify Update Available
|
|
519
520
|
function bindExportsTo(luvio) {
|
|
521
|
+
// LDS Adapters
|
|
520
522
|
function unwrapSnapshotData(factory) {
|
|
521
523
|
const adapter = factory(luvio);
|
|
522
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
524
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
523
525
|
}
|
|
524
526
|
return {
|
|
525
527
|
featureValidation: unwrapSnapshotData(featureValidationAdapterFactory),
|
|
526
528
|
// Imperative GET Adapters
|
|
529
|
+
// Notify Update Availables
|
|
527
530
|
};
|
|
528
531
|
}
|
|
529
532
|
withDefaultLuvio((luvio) => {
|
|
530
|
-
({
|
|
531
|
-
featureValidation,
|
|
532
|
-
} = bindExportsTo(luvio));
|
|
533
|
+
({ featureValidation } = bindExportsTo(luvio));
|
|
533
534
|
});
|
|
534
535
|
|
|
535
536
|
export { featureValidation };
|
|
536
|
-
// version: 1.
|
|
537
|
+
// version: 1.262.0-d3c071fdc
|