@ekyc_qoobiss/qbs-ect-cmp 3.6.72 → 3.6.73
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/dist/cjs/agreement-check_18.cjs.entry.js +7 -3
- package/dist/collection/components/flow/process-id/process-id.js +3 -1
- package/dist/collection/components/flow/user-liveness/user-liveness.js +3 -1
- package/dist/esm/agreement-check_18.entry.js +7 -3
- package/dist/qbs-ect-cmp/{p-f05c3e6e.entry.js → p-685fe5fd.entry.js} +1 -1
- package/dist/qbs-ect-cmp/qbs-ect-cmp.esm.js +1 -1
- package/package.json +1 -1
|
@@ -5235,7 +5235,7 @@ function v4(options, buf, offset) {
|
|
|
5235
5235
|
}
|
|
5236
5236
|
|
|
5237
5237
|
const name = "@ekyc_qoobiss/qbs-ect-cmp";
|
|
5238
|
-
const version$1 = "3.6.
|
|
5238
|
+
const version$1 = "3.6.73";
|
|
5239
5239
|
const description = "Person Identification Component";
|
|
5240
5240
|
const main = "./dist/index.cjs.js";
|
|
5241
5241
|
const module$1 = "./dist/index.js";
|
|
@@ -8801,8 +8801,10 @@ const ProcessId = class {
|
|
|
8801
8801
|
this.verificationReceived = Date.now();
|
|
8802
8802
|
let initialStatus = TranslationUtils.state.flowStatus;
|
|
8803
8803
|
let statusChanged = false;
|
|
8804
|
-
while (Date.now() - this.verificationReceived <
|
|
8804
|
+
while (Date.now() - this.verificationReceived < 30000 && !statusChanged) {
|
|
8805
8805
|
await delay(2000);
|
|
8806
|
+
if (this.showInvalid || this.showTimeout)
|
|
8807
|
+
return;
|
|
8806
8808
|
statusChanged = initialStatus != TranslationUtils.state.flowStatus;
|
|
8807
8809
|
}
|
|
8808
8810
|
if (!statusChanged) {
|
|
@@ -9194,8 +9196,10 @@ const UserLiveness = class {
|
|
|
9194
9196
|
this.verificationReceived = Date.now();
|
|
9195
9197
|
let initialStatus = TranslationUtils.state.flowStatus;
|
|
9196
9198
|
let statusChanged = false;
|
|
9197
|
-
while (Date.now() - this.verificationReceived <
|
|
9199
|
+
while (Date.now() - this.verificationReceived < 30000 && !statusChanged) {
|
|
9198
9200
|
await delay(2000);
|
|
9201
|
+
if (this.showError || this.showTimeout)
|
|
9202
|
+
return;
|
|
9199
9203
|
statusChanged = initialStatus != TranslationUtils.state.flowStatus;
|
|
9200
9204
|
}
|
|
9201
9205
|
if (!statusChanged) {
|
|
@@ -128,8 +128,10 @@ export class ProcessId {
|
|
|
128
128
|
this.verificationReceived = Date.now();
|
|
129
129
|
let initialStatus = store.flowStatus;
|
|
130
130
|
let statusChanged = false;
|
|
131
|
-
while (Date.now() - this.verificationReceived <
|
|
131
|
+
while (Date.now() - this.verificationReceived < 30000 && !statusChanged) {
|
|
132
132
|
await delay(2000);
|
|
133
|
+
if (this.showInvalid || this.showTimeout)
|
|
134
|
+
return;
|
|
133
135
|
statusChanged = initialStatus != store.flowStatus;
|
|
134
136
|
}
|
|
135
137
|
if (!statusChanged) {
|
|
@@ -111,8 +111,10 @@ export class UserLiveness {
|
|
|
111
111
|
this.verificationReceived = Date.now();
|
|
112
112
|
let initialStatus = store.flowStatus;
|
|
113
113
|
let statusChanged = false;
|
|
114
|
-
while (Date.now() - this.verificationReceived <
|
|
114
|
+
while (Date.now() - this.verificationReceived < 30000 && !statusChanged) {
|
|
115
115
|
await delay(2000);
|
|
116
|
+
if (this.showError || this.showTimeout)
|
|
117
|
+
return;
|
|
116
118
|
statusChanged = initialStatus != store.flowStatus;
|
|
117
119
|
}
|
|
118
120
|
if (!statusChanged) {
|
|
@@ -5231,7 +5231,7 @@ function v4(options, buf, offset) {
|
|
|
5231
5231
|
}
|
|
5232
5232
|
|
|
5233
5233
|
const name = "@ekyc_qoobiss/qbs-ect-cmp";
|
|
5234
|
-
const version$1 = "3.6.
|
|
5234
|
+
const version$1 = "3.6.73";
|
|
5235
5235
|
const description = "Person Identification Component";
|
|
5236
5236
|
const main = "./dist/index.cjs.js";
|
|
5237
5237
|
const module = "./dist/index.js";
|
|
@@ -8797,8 +8797,10 @@ const ProcessId = class {
|
|
|
8797
8797
|
this.verificationReceived = Date.now();
|
|
8798
8798
|
let initialStatus = state.flowStatus;
|
|
8799
8799
|
let statusChanged = false;
|
|
8800
|
-
while (Date.now() - this.verificationReceived <
|
|
8800
|
+
while (Date.now() - this.verificationReceived < 30000 && !statusChanged) {
|
|
8801
8801
|
await delay(2000);
|
|
8802
|
+
if (this.showInvalid || this.showTimeout)
|
|
8803
|
+
return;
|
|
8802
8804
|
statusChanged = initialStatus != state.flowStatus;
|
|
8803
8805
|
}
|
|
8804
8806
|
if (!statusChanged) {
|
|
@@ -9190,8 +9192,10 @@ const UserLiveness = class {
|
|
|
9190
9192
|
this.verificationReceived = Date.now();
|
|
9191
9193
|
let initialStatus = state.flowStatus;
|
|
9192
9194
|
let statusChanged = false;
|
|
9193
|
-
while (Date.now() - this.verificationReceived <
|
|
9195
|
+
while (Date.now() - this.verificationReceived < 30000 && !statusChanged) {
|
|
9194
9196
|
await delay(2000);
|
|
9197
|
+
if (this.showError || this.showTimeout)
|
|
9198
|
+
return;
|
|
9195
9199
|
statusChanged = initialStatus != state.flowStatus;
|
|
9196
9200
|
}
|
|
9197
9201
|
if (!statusChanged) {
|