@salesforce/lds-adapters-industries-identityverification 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.
@@ -2,4 +2,4 @@ declare let buildVerificationContext: any;
2
2
  declare let createFormVerification: any;
3
3
  declare let identityVerification: any;
4
4
  declare let searchRecords: any;
5
- export { buildVerificationContext, createFormVerification, identityVerification, searchRecords, };
5
+ export { buildVerificationContext, createFormVerification, identityVerification, searchRecords };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/lds-adapters-industries-identityverification",
3
- "version": "1.261.0",
3
+ "version": "1.262.1",
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",
@@ -35,15 +35,14 @@
35
35
  "release:core": "../../scripts/release/core.js --adapter=lds-adapters-industries-identityverification",
36
36
  "release:corejar": "yarn build && packages/core-build/scripts/core.js --adapter=lds-adapters-industries-identityverification",
37
37
  "start": "nx build:karma && karma start",
38
- "test": "nx build:karma && karma start --single-run",
39
- "test:compat": "nx build:karma && karma start --single-run --compat"
38
+ "test": "nx build:karma && karma start --single-run"
40
39
  },
41
40
  "dependencies": {
42
- "@salesforce/lds-bindings": "^1.261.0"
41
+ "@salesforce/lds-bindings": "^1.262.1"
43
42
  },
44
43
  "devDependencies": {
45
- "@salesforce/lds-compiler-plugins": "^1.261.0",
46
- "@salesforce/lds-karma": "^1.261.0"
44
+ "@salesforce/lds-compiler-plugins": "^1.262.1",
45
+ "@salesforce/lds-karma": "^1.262.1"
47
46
  },
48
47
  "nx": {
49
48
  "targets": {
package/sfdc/index.js CHANGED
@@ -2894,9 +2894,10 @@ let identityVerification;
2894
2894
  let searchRecords;
2895
2895
  // Notify Update Available
2896
2896
  function bindExportsTo(luvio) {
2897
+ // LDS Adapters
2897
2898
  function unwrapSnapshotData(factory) {
2898
2899
  const adapter = factory(luvio);
2899
- return (config) => adapter(config).then(snapshot => snapshot.data);
2900
+ return (config) => adapter(config).then((snapshot) => snapshot.data);
2900
2901
  }
2901
2902
  return {
2902
2903
  buildVerificationContext: unwrapSnapshotData(buildVerificationContextAdapterFactory),
@@ -2908,13 +2909,9 @@ function bindExportsTo(luvio) {
2908
2909
  };
2909
2910
  }
2910
2911
  withDefaultLuvio((luvio) => {
2911
- ({
2912
- buildVerificationContext,
2913
- createFormVerification,
2914
- identityVerification,
2915
- searchRecords,
2916
- } = bindExportsTo(luvio));
2912
+ ({ buildVerificationContext, createFormVerification, identityVerification, searchRecords } =
2913
+ bindExportsTo(luvio));
2917
2914
  });
2918
2915
 
2919
2916
  export { buildVerificationContext, createFormVerification, identityVerification, searchRecords };
2920
- // version: 1.261.0-10ee630e7
2917
+ // version: 1.262.1-9a1924e93