@salesforce/lds-adapters-industries-identityverification 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-identityverification",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Family for all Identity Verification related APIs",
|
|
6
6
|
"main": "dist/es/es2018/industries-identityverification.js",
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"test:compat": "nx build:karma && karma start --single-run --compat"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@salesforce/lds-bindings": "^1.
|
|
42
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
-
"@salesforce/lds-karma": "^1.
|
|
45
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
46
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -2892,6 +2892,7 @@ let buildVerificationContext;
|
|
|
2892
2892
|
let createFormVerification;
|
|
2893
2893
|
let identityVerification;
|
|
2894
2894
|
let searchRecords;
|
|
2895
|
+
// Notify Update Available
|
|
2895
2896
|
function bindExportsTo(luvio) {
|
|
2896
2897
|
function unwrapSnapshotData(factory) {
|
|
2897
2898
|
const adapter = factory(luvio);
|
|
@@ -2903,6 +2904,7 @@ function bindExportsTo(luvio) {
|
|
|
2903
2904
|
identityVerification: unwrapSnapshotData(identityVerificationAdapterFactory),
|
|
2904
2905
|
searchRecords: unwrapSnapshotData(searchRecordsAdapterFactory),
|
|
2905
2906
|
// Imperative GET Adapters
|
|
2907
|
+
// Notify Update Availables
|
|
2906
2908
|
};
|
|
2907
2909
|
}
|
|
2908
2910
|
withDefaultLuvio((luvio) => {
|
|
@@ -2915,4 +2917,4 @@ withDefaultLuvio((luvio) => {
|
|
|
2915
2917
|
});
|
|
2916
2918
|
|
|
2917
2919
|
export { buildVerificationContext, createFormVerification, identityVerification, searchRecords };
|
|
2918
|
-
// version: 1.
|
|
2920
|
+
// version: 1.261.0-10ee630e7
|