@salesforce/lds-adapters-industries-identityverification 1.207.0 → 1.208.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.
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* For full license text, see the LICENSE.txt file
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import { serializeStructuredKey, deepFreeze, StoreKeyMap } from '@luvio/engine';
|
|
7
|
+
import { serializeStructuredKey, deepFreeze, StoreKeyMap, typeCheckScalars } from '@luvio/engine';
|
|
8
8
|
|
|
9
9
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
10
10
|
const { keys: ObjectKeys, create: ObjectCreate } = Object;
|
|
@@ -1293,10 +1293,9 @@ function createResourceParams$3(config) {
|
|
|
1293
1293
|
}
|
|
1294
1294
|
function typeCheckConfig$3(untrustedConfig) {
|
|
1295
1295
|
const config = {};
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
}
|
|
1296
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
1297
|
+
processDefinitionName: 0 /* String */,
|
|
1298
|
+
});
|
|
1300
1299
|
const untrustedConfig_BuildContextData = untrustedConfig.BuildContextData;
|
|
1301
1300
|
const referenceBuildVerificationContextInputRepresentationValidationError = validate$C(untrustedConfig_BuildContextData);
|
|
1302
1301
|
if (referenceBuildVerificationContextInputRepresentationValidationError === null) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-identityverification",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.208.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",
|
package/sfdc/index.js
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
/* proxy-compat-disable */
|
|
15
15
|
import { withDefaultLuvio } from 'force/ldsEngine';
|
|
16
|
-
import { serializeStructuredKey, deepFreeze, StoreKeyMap } from 'force/luvioEngine';
|
|
16
|
+
import { serializeStructuredKey, deepFreeze, StoreKeyMap, typeCheckScalars } from 'force/luvioEngine';
|
|
17
17
|
|
|
18
18
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
19
19
|
const { keys: ObjectKeys, create: ObjectCreate } = Object;
|
|
@@ -1302,10 +1302,9 @@ function createResourceParams$3(config) {
|
|
|
1302
1302
|
}
|
|
1303
1303
|
function typeCheckConfig$3(untrustedConfig) {
|
|
1304
1304
|
const config = {};
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
}
|
|
1305
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
1306
|
+
processDefinitionName: 0 /* String */,
|
|
1307
|
+
});
|
|
1309
1308
|
const untrustedConfig_BuildContextData = untrustedConfig.BuildContextData;
|
|
1310
1309
|
const referenceBuildVerificationContextInputRepresentationValidationError = validate$C(untrustedConfig_BuildContextData);
|
|
1311
1310
|
if (referenceBuildVerificationContextInputRepresentationValidationError === null) {
|
|
@@ -2989,4 +2988,4 @@ withDefaultLuvio((luvio) => {
|
|
|
2989
2988
|
});
|
|
2990
2989
|
|
|
2991
2990
|
export { buildVerificationContext, createFormVerification, identityVerification, searchRecords };
|
|
2992
|
-
// version: 1.
|
|
2991
|
+
// version: 1.208.0-027673bd6
|