idmission-web-sdk 1.0.359 → 1.0.360

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/README.md CHANGED
@@ -703,7 +703,7 @@ Render a fullscreen capture component that performs IDValidation and FaceValidat
703
703
  <tr><td><code>showIdCardBackDurationMs</code> (optional)</td><td>the duration of time in milliseconds that the user is instructed to show the back of their ID card during video capture. Defaults to 5000ms.</td></tr>
704
704
  <tr><td><code>readTextPrompt</code> (optional)</td><td>an optional text prompt to display on screen for the user to read during video capture after the ID card has been shown. Leave blank to skip the read text screen.</td></tr>
705
705
  <tr><td><code>readTextTimeoutDurationMs</code> (optional)</td><td>the duration of time in milliseconds that the user is allowed to spend reading the <code>readTextPrompt</code>. Defaults to 15000 (15 seconds).</td></tr>
706
- <tr><td><code>readTextMinReadingMs</code> (optional)</td><td>the duration of time in milliseconds that the user is forced to spend reading the `readTextPrompt` before they can click the Done button. Defaults to 3000 (3 seconds).</td></tr>
706
+ <tr><td><code>readTextMinReadingMs</code> (optional)</td><td>the duration of time in milliseconds that the user is forced to spend reading the `readTextPrompt` before they can click the Done button. Defaults to 10000 (10 seconds).</td></tr>
707
707
  <tr><td><code>skipSuccessScreen</code> (optional)</td><td>boolean or async function to indicate whether to proceed automatically after capture guidance is satisfied. If an async function is supplied returning a boolean, it will be evaluated at the time of capture guidance satisfaction. Defaults to false.</td></tr>
708
708
  <tr><td><code>skipIdCapture</code> (optional)</td><td>boolean to indicate whether to skip the initial ID capture flow. Note that when this flag is set, submission to IDmission's servers will not be attempted; it should be used in tandem with onSubmit. Defaults to false.</td></tr>
709
709
  <tr><td><code>skipShowIdCardBack</code> (optional)</td><td>boolean or async function to indicate whether to instruct the user to show the back of their ID card during video capture. If an async function is supplied returning a boolean, it will be evaluated at the time of ID front video capture completion. Defaults to false.</td></tr>
@@ -50,7 +50,7 @@ var LanguageDetector__default = /*#__PURE__*/_interopDefaultLegacy(LanguageDetec
50
50
  var i18n__default = /*#__PURE__*/_interopDefaultLegacy(i18n);
51
51
  var SignatureCanvas__default = /*#__PURE__*/_interopDefaultLegacy(SignatureCanvas);
52
52
 
53
- var webSdkVersion = '1.0.359';
53
+ var webSdkVersion = '1.0.360';
54
54
 
55
55
  function getPlatform() {
56
56
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment
@@ -16402,7 +16402,7 @@ var ReadTextPrompt = function ReadTextPrompt(_a) {
16402
16402
  _b = _a.durationMs,
16403
16403
  durationMs = _b === void 0 ? 15000 : _b,
16404
16404
  _c = _a.minReadingMs,
16405
- minReadingMs = _c === void 0 ? 3000 : _c,
16405
+ minReadingMs = _c === void 0 ? 10000 : _c,
16406
16406
  _d = _a.classNames,
16407
16407
  classNames = _d === void 0 ? {} : _d,
16408
16408
  _e = _a.verbiage,
@@ -16529,7 +16529,7 @@ var IdVideoCapture = function IdVideoCapture(_a) {
16529
16529
  _4 = _a.readTextTimeoutDurationMs,
16530
16530
  readTextTimeoutDurationMs = _4 === void 0 ? 15000 : _4,
16531
16531
  _5 = _a.readTextMinReadingMs,
16532
- readTextMinReadingMs = _5 === void 0 ? 3000 : _5,
16532
+ readTextMinReadingMs = _5 === void 0 ? 10000 : _5,
16533
16533
  _6 = _a.disableFaceDetectionWhileAudioCapture,
16534
16534
  disableFaceDetectionWhileAudioCapture = _6 === void 0 ? false : _6,
16535
16535
  _7 = _a.disableFaceDetectionWhileAudioCaptureMsDelay,
@@ -19512,7 +19512,7 @@ var VideoIdValidation = function VideoIdValidation(_a) {
19512
19512
  _k = _a.readTextTimeoutDurationMs,
19513
19513
  readTextTimeoutDurationMs = _k === void 0 ? 15000 : _k,
19514
19514
  _l = _a.readTextMinReadingMs,
19515
- readTextMinReadingMs = _l === void 0 ? 3000 : _l,
19515
+ readTextMinReadingMs = _l === void 0 ? 10000 : _l,
19516
19516
  _m = _a.skipSuccessScreen,
19517
19517
  skipSuccessScreen = _m === void 0 ? false : _m,
19518
19518
  _o = _a.skipIdCapture,