@ekyc_qoobiss/qbs-ect-cmp 1.8.5 → 1.8.7

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.
@@ -1817,7 +1817,7 @@ class IDML5Detector {
1817
1817
  if (this.full == 1 && this.tilted == 1) {
1818
1818
  if (this.start == null)
1819
1819
  this.start = Date.now();
1820
- if (Date.now() > this.start + 3000) {
1820
+ if (Date.now() > this.start + 500) {
1821
1821
  this.continue = false;
1822
1822
  this.stream.verificationReady();
1823
1823
  }
@@ -5319,6 +5319,7 @@ const IdBackCapture = class {
5319
5319
  if (this.verified)
5320
5320
  return;
5321
5321
  this.verified = true;
5322
+ this.titleMesage = IdCaptureValues.Loading;
5322
5323
  this.closeCamera();
5323
5324
  }
5324
5325
  takePhoto() {
@@ -5444,6 +5445,7 @@ const IdCapture = class {
5444
5445
  if (this.verified)
5445
5446
  return;
5446
5447
  this.verified = true;
5448
+ this.titleMesage = IdCaptureValues.Loading;
5447
5449
  this.closeCamera();
5448
5450
  }
5449
5451
  render() {
@@ -6028,7 +6030,6 @@ const SelfieCapture = class {
6028
6030
  if (this.captureTaken)
6029
6031
  return;
6030
6032
  this.captureTaken = true;
6031
- this.titleMesage = SelfieCaptureValues.Loading;
6032
6033
  Stream.getInstance()
6033
6034
  .takePhoto()
6034
6035
  .then(res => {
@@ -6039,6 +6040,7 @@ const SelfieCapture = class {
6039
6040
  if (this.verified)
6040
6041
  return;
6041
6042
  this.verified = true;
6043
+ this.titleMesage = SelfieCaptureValues.Loading;
6042
6044
  this.closeCamera();
6043
6045
  }
6044
6046
  render() {
@@ -83,6 +83,7 @@ export class IdBackCapture {
83
83
  if (this.verified)
84
84
  return;
85
85
  this.verified = true;
86
+ this.titleMesage = IdCaptureValues.Loading;
86
87
  this.closeCamera();
87
88
  }
88
89
  takePhoto() {
@@ -93,6 +93,7 @@ export class IdCapture {
93
93
  if (this.verified)
94
94
  return;
95
95
  this.verified = true;
96
+ this.titleMesage = IdCaptureValues.Loading;
96
97
  this.closeCamera();
97
98
  }
98
99
  render() {
@@ -80,7 +80,6 @@ export class SelfieCapture {
80
80
  if (this.captureTaken)
81
81
  return;
82
82
  this.captureTaken = true;
83
- this.titleMesage = SelfieCaptureValues.Loading;
84
83
  Stream.getInstance()
85
84
  .takePhoto()
86
85
  .then(res => {
@@ -91,6 +90,7 @@ export class SelfieCapture {
91
90
  if (this.verified)
92
91
  return;
93
92
  this.verified = true;
93
+ this.titleMesage = SelfieCaptureValues.Loading;
94
94
  this.closeCamera();
95
95
  }
96
96
  render() {
@@ -37,7 +37,7 @@ export class IDML5Detector {
37
37
  if (this.full == 1 && this.tilted == 1) {
38
38
  if (this.start == null)
39
39
  this.start = Date.now();
40
- if (Date.now() > this.start + 3000) {
40
+ if (Date.now() > this.start + 500) {
41
41
  this.continue = false;
42
42
  this.stream.verificationReady();
43
43
  }
@@ -1813,7 +1813,7 @@ class IDML5Detector {
1813
1813
  if (this.full == 1 && this.tilted == 1) {
1814
1814
  if (this.start == null)
1815
1815
  this.start = Date.now();
1816
- if (Date.now() > this.start + 3000) {
1816
+ if (Date.now() > this.start + 500) {
1817
1817
  this.continue = false;
1818
1818
  this.stream.verificationReady();
1819
1819
  }
@@ -5315,6 +5315,7 @@ const IdBackCapture = class {
5315
5315
  if (this.verified)
5316
5316
  return;
5317
5317
  this.verified = true;
5318
+ this.titleMesage = IdCaptureValues.Loading;
5318
5319
  this.closeCamera();
5319
5320
  }
5320
5321
  takePhoto() {
@@ -5440,6 +5441,7 @@ const IdCapture = class {
5440
5441
  if (this.verified)
5441
5442
  return;
5442
5443
  this.verified = true;
5444
+ this.titleMesage = IdCaptureValues.Loading;
5443
5445
  this.closeCamera();
5444
5446
  }
5445
5447
  render() {
@@ -6024,7 +6026,6 @@ const SelfieCapture = class {
6024
6026
  if (this.captureTaken)
6025
6027
  return;
6026
6028
  this.captureTaken = true;
6027
- this.titleMesage = SelfieCaptureValues.Loading;
6028
6029
  Stream.getInstance()
6029
6030
  .takePhoto()
6030
6031
  .then(res => {
@@ -6035,6 +6036,7 @@ const SelfieCapture = class {
6035
6036
  if (this.verified)
6036
6037
  return;
6037
6038
  this.verified = true;
6039
+ this.titleMesage = SelfieCaptureValues.Loading;
6038
6040
  this.closeCamera();
6039
6041
  }
6040
6042
  render() {