@salesforce/lds-adapters-industries-featurevalidation 1.259.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 +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-featurevalidation",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.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",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"test:compat": "nx build:karma && karma start --single-run --compat"
|
|
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
|
@@ -516,6 +516,7 @@ const featureValidationAdapterFactory = (luvio) => {
|
|
|
516
516
|
};
|
|
517
517
|
|
|
518
518
|
let featureValidation;
|
|
519
|
+
// Notify Update Available
|
|
519
520
|
function bindExportsTo(luvio) {
|
|
520
521
|
function unwrapSnapshotData(factory) {
|
|
521
522
|
const adapter = factory(luvio);
|
|
@@ -524,6 +525,7 @@ function bindExportsTo(luvio) {
|
|
|
524
525
|
return {
|
|
525
526
|
featureValidation: unwrapSnapshotData(featureValidationAdapterFactory),
|
|
526
527
|
// Imperative GET Adapters
|
|
528
|
+
// Notify Update Availables
|
|
527
529
|
};
|
|
528
530
|
}
|
|
529
531
|
withDefaultLuvio((luvio) => {
|
|
@@ -533,4 +535,4 @@ withDefaultLuvio((luvio) => {
|
|
|
533
535
|
});
|
|
534
536
|
|
|
535
537
|
export { featureValidation };
|
|
536
|
-
// version: 1.
|
|
538
|
+
// version: 1.261.0-10ee630e7
|