@ekyc_qoobiss/qbs-ect-cmp 3.2.2 → 3.2.4
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 +19 -19
- package/dist/collection/components/identification-component/identification-component.js +2 -2
- package/dist/collection/models/FlowSteps.js +16 -16
- package/dist/esm/agreement-check_18.entry.js +19 -19
- package/dist/qbs-ect-cmp/{p-29f81591.entry.js → p-9c12a757.entry.js} +2 -2
- package/dist/qbs-ect-cmp/qbs-ect-cmp.esm.js +1 -1
- package/dist/types/models/FlowSteps.d.ts +16 -16
- package/package.json +1 -1
|
@@ -408,25 +408,25 @@ onChange('phoneValidation', value => {
|
|
|
408
408
|
|
|
409
409
|
var FlowSteps;
|
|
410
410
|
(function (FlowSteps) {
|
|
411
|
-
FlowSteps["MobileRedirect"] =
|
|
412
|
-
FlowSteps["Landing"] =
|
|
413
|
-
FlowSteps["Agreements"] =
|
|
414
|
-
FlowSteps["OtpSend"] =
|
|
415
|
-
FlowSteps["OtpCheck"] =
|
|
416
|
-
FlowSteps["CiFrontHowTo"] =
|
|
417
|
-
FlowSteps["CiFront"] =
|
|
418
|
-
FlowSteps["CiBackHowTo"] =
|
|
419
|
-
FlowSteps["CiBack"] =
|
|
420
|
-
FlowSteps["SelfieHowTo"] =
|
|
421
|
-
FlowSteps["Selfie"] =
|
|
422
|
-
FlowSteps["End"] =
|
|
423
|
-
FlowSteps["CameraError"] =
|
|
411
|
+
FlowSteps[FlowSteps["MobileRedirect"] = 'mobile-redirect'] = "MobileRedirect";
|
|
412
|
+
FlowSteps[FlowSteps["Landing"] = 'landing'] = "Landing";
|
|
413
|
+
FlowSteps[FlowSteps["Agreements"] = 'agreements'] = "Agreements";
|
|
414
|
+
FlowSteps[FlowSteps["OtpSend"] = 'otp-send'] = "OtpSend";
|
|
415
|
+
FlowSteps[FlowSteps["OtpCheck"] = 'otp-check'] = "OtpCheck";
|
|
416
|
+
FlowSteps[FlowSteps["CiFrontHowTo"] = 'ci-front-how-to'] = "CiFrontHowTo";
|
|
417
|
+
FlowSteps[FlowSteps["CiFront"] = 'ci-front'] = "CiFront";
|
|
418
|
+
FlowSteps[FlowSteps["CiBackHowTo"] = 'ci-back-how-to'] = "CiBackHowTo";
|
|
419
|
+
FlowSteps[FlowSteps["CiBack"] = 'ci-back'] = "CiBack";
|
|
420
|
+
FlowSteps[FlowSteps["SelfieHowTo"] = 'selfie-how-to'] = "SelfieHowTo";
|
|
421
|
+
FlowSteps[FlowSteps["Selfie"] = 'selfie'] = "Selfie";
|
|
422
|
+
FlowSteps[FlowSteps["End"] = 'end'] = "End";
|
|
423
|
+
FlowSteps[FlowSteps["CameraError"] = 'camera-error'] = "CameraError";
|
|
424
424
|
})(FlowSteps || (FlowSteps = {}));
|
|
425
425
|
var FlowMoments;
|
|
426
426
|
(function (FlowMoments) {
|
|
427
|
-
FlowMoments["Initialized"] =
|
|
428
|
-
FlowMoments["Finalized"] =
|
|
429
|
-
FlowMoments["None"] =
|
|
427
|
+
FlowMoments[FlowMoments["Initialized"] = 'initialized'] = "Initialized";
|
|
428
|
+
FlowMoments[FlowMoments["Finalized"] = 'finalized'] = "Finalized";
|
|
429
|
+
FlowMoments[FlowMoments["None"] = 'none'] = "None";
|
|
430
430
|
})(FlowMoments || (FlowMoments = {}));
|
|
431
431
|
|
|
432
432
|
class ApiCall {
|
|
@@ -6310,7 +6310,7 @@ function v4(options, buf, offset) {
|
|
|
6310
6310
|
}
|
|
6311
6311
|
|
|
6312
6312
|
const name = "@ekyc_qoobiss/qbs-ect-cmp";
|
|
6313
|
-
const version$1 = "3.2.
|
|
6313
|
+
const version$1 = "3.2.4";
|
|
6314
6314
|
const description = "Person Identification Component";
|
|
6315
6315
|
const main = "./dist/index.cjs.js";
|
|
6316
6316
|
const module$1 = "./dist/index.js";
|
|
@@ -6484,8 +6484,6 @@ const IdentificationComponent = class {
|
|
|
6484
6484
|
this.idSide = '';
|
|
6485
6485
|
this.errorMessage = undefined;
|
|
6486
6486
|
this.errorTitle = undefined;
|
|
6487
|
-
this.baseComponent = new BaseComponent(null);
|
|
6488
|
-
this.baseComponent.setErrorCallback(this.apiErrorEmitter);
|
|
6489
6487
|
}
|
|
6490
6488
|
async componentWillLoad() {
|
|
6491
6489
|
Events.init(window);
|
|
@@ -6493,6 +6491,8 @@ const IdentificationComponent = class {
|
|
|
6493
6491
|
if (this.env && this.env != '') {
|
|
6494
6492
|
state.environment = this.env;
|
|
6495
6493
|
}
|
|
6494
|
+
this.baseComponent = new BaseComponent(null);
|
|
6495
|
+
this.baseComponent.setErrorCallback(this.apiErrorEmitter);
|
|
6496
6496
|
if (state.debug)
|
|
6497
6497
|
this.logInit = getLogMessage(this.order_id, this.redirect_id, this.token);
|
|
6498
6498
|
if (this.token) {
|
|
@@ -111,8 +111,6 @@ export class IdentificationComponent {
|
|
|
111
111
|
this.idSide = '';
|
|
112
112
|
this.errorMessage = undefined;
|
|
113
113
|
this.errorTitle = undefined;
|
|
114
|
-
this.baseComponent = new BaseComponent(null);
|
|
115
|
-
this.baseComponent.setErrorCallback(this.apiErrorEmitter);
|
|
116
114
|
}
|
|
117
115
|
async componentWillLoad() {
|
|
118
116
|
Events.init(window);
|
|
@@ -120,6 +118,8 @@ export class IdentificationComponent {
|
|
|
120
118
|
if (this.env && this.env != '') {
|
|
121
119
|
store.environment = this.env;
|
|
122
120
|
}
|
|
121
|
+
this.baseComponent = new BaseComponent(null);
|
|
122
|
+
this.baseComponent.setErrorCallback(this.apiErrorEmitter);
|
|
123
123
|
if (store.debug)
|
|
124
124
|
this.logInit = getLogMessage(this.order_id, this.redirect_id, this.token);
|
|
125
125
|
if (this.token) {
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
export var FlowSteps;
|
|
2
2
|
(function (FlowSteps) {
|
|
3
|
-
FlowSteps["MobileRedirect"] =
|
|
4
|
-
FlowSteps["Landing"] =
|
|
5
|
-
FlowSteps["Agreements"] =
|
|
6
|
-
FlowSteps["OtpSend"] =
|
|
7
|
-
FlowSteps["OtpCheck"] =
|
|
8
|
-
FlowSteps["CiFrontHowTo"] =
|
|
9
|
-
FlowSteps["CiFront"] =
|
|
10
|
-
FlowSteps["CiBackHowTo"] =
|
|
11
|
-
FlowSteps["CiBack"] =
|
|
12
|
-
FlowSteps["SelfieHowTo"] =
|
|
13
|
-
FlowSteps["Selfie"] =
|
|
14
|
-
FlowSteps["End"] =
|
|
15
|
-
FlowSteps["CameraError"] =
|
|
3
|
+
FlowSteps[FlowSteps["MobileRedirect"] = 'mobile-redirect'] = "MobileRedirect";
|
|
4
|
+
FlowSteps[FlowSteps["Landing"] = 'landing'] = "Landing";
|
|
5
|
+
FlowSteps[FlowSteps["Agreements"] = 'agreements'] = "Agreements";
|
|
6
|
+
FlowSteps[FlowSteps["OtpSend"] = 'otp-send'] = "OtpSend";
|
|
7
|
+
FlowSteps[FlowSteps["OtpCheck"] = 'otp-check'] = "OtpCheck";
|
|
8
|
+
FlowSteps[FlowSteps["CiFrontHowTo"] = 'ci-front-how-to'] = "CiFrontHowTo";
|
|
9
|
+
FlowSteps[FlowSteps["CiFront"] = 'ci-front'] = "CiFront";
|
|
10
|
+
FlowSteps[FlowSteps["CiBackHowTo"] = 'ci-back-how-to'] = "CiBackHowTo";
|
|
11
|
+
FlowSteps[FlowSteps["CiBack"] = 'ci-back'] = "CiBack";
|
|
12
|
+
FlowSteps[FlowSteps["SelfieHowTo"] = 'selfie-how-to'] = "SelfieHowTo";
|
|
13
|
+
FlowSteps[FlowSteps["Selfie"] = 'selfie'] = "Selfie";
|
|
14
|
+
FlowSteps[FlowSteps["End"] = 'end'] = "End";
|
|
15
|
+
FlowSteps[FlowSteps["CameraError"] = 'camera-error'] = "CameraError";
|
|
16
16
|
})(FlowSteps || (FlowSteps = {}));
|
|
17
17
|
export var FlowMoments;
|
|
18
18
|
(function (FlowMoments) {
|
|
19
|
-
FlowMoments["Initialized"] =
|
|
20
|
-
FlowMoments["Finalized"] =
|
|
21
|
-
FlowMoments["None"] =
|
|
19
|
+
FlowMoments[FlowMoments["Initialized"] = 'initialized'] = "Initialized";
|
|
20
|
+
FlowMoments[FlowMoments["Finalized"] = 'finalized'] = "Finalized";
|
|
21
|
+
FlowMoments[FlowMoments["None"] = 'none'] = "None";
|
|
22
22
|
})(FlowMoments || (FlowMoments = {}));
|
|
@@ -404,25 +404,25 @@ onChange('phoneValidation', value => {
|
|
|
404
404
|
|
|
405
405
|
var FlowSteps;
|
|
406
406
|
(function (FlowSteps) {
|
|
407
|
-
FlowSteps["MobileRedirect"] =
|
|
408
|
-
FlowSteps["Landing"] =
|
|
409
|
-
FlowSteps["Agreements"] =
|
|
410
|
-
FlowSteps["OtpSend"] =
|
|
411
|
-
FlowSteps["OtpCheck"] =
|
|
412
|
-
FlowSteps["CiFrontHowTo"] =
|
|
413
|
-
FlowSteps["CiFront"] =
|
|
414
|
-
FlowSteps["CiBackHowTo"] =
|
|
415
|
-
FlowSteps["CiBack"] =
|
|
416
|
-
FlowSteps["SelfieHowTo"] =
|
|
417
|
-
FlowSteps["Selfie"] =
|
|
418
|
-
FlowSteps["End"] =
|
|
419
|
-
FlowSteps["CameraError"] =
|
|
407
|
+
FlowSteps[FlowSteps["MobileRedirect"] = 'mobile-redirect'] = "MobileRedirect";
|
|
408
|
+
FlowSteps[FlowSteps["Landing"] = 'landing'] = "Landing";
|
|
409
|
+
FlowSteps[FlowSteps["Agreements"] = 'agreements'] = "Agreements";
|
|
410
|
+
FlowSteps[FlowSteps["OtpSend"] = 'otp-send'] = "OtpSend";
|
|
411
|
+
FlowSteps[FlowSteps["OtpCheck"] = 'otp-check'] = "OtpCheck";
|
|
412
|
+
FlowSteps[FlowSteps["CiFrontHowTo"] = 'ci-front-how-to'] = "CiFrontHowTo";
|
|
413
|
+
FlowSteps[FlowSteps["CiFront"] = 'ci-front'] = "CiFront";
|
|
414
|
+
FlowSteps[FlowSteps["CiBackHowTo"] = 'ci-back-how-to'] = "CiBackHowTo";
|
|
415
|
+
FlowSteps[FlowSteps["CiBack"] = 'ci-back'] = "CiBack";
|
|
416
|
+
FlowSteps[FlowSteps["SelfieHowTo"] = 'selfie-how-to'] = "SelfieHowTo";
|
|
417
|
+
FlowSteps[FlowSteps["Selfie"] = 'selfie'] = "Selfie";
|
|
418
|
+
FlowSteps[FlowSteps["End"] = 'end'] = "End";
|
|
419
|
+
FlowSteps[FlowSteps["CameraError"] = 'camera-error'] = "CameraError";
|
|
420
420
|
})(FlowSteps || (FlowSteps = {}));
|
|
421
421
|
var FlowMoments;
|
|
422
422
|
(function (FlowMoments) {
|
|
423
|
-
FlowMoments["Initialized"] =
|
|
424
|
-
FlowMoments["Finalized"] =
|
|
425
|
-
FlowMoments["None"] =
|
|
423
|
+
FlowMoments[FlowMoments["Initialized"] = 'initialized'] = "Initialized";
|
|
424
|
+
FlowMoments[FlowMoments["Finalized"] = 'finalized'] = "Finalized";
|
|
425
|
+
FlowMoments[FlowMoments["None"] = 'none'] = "None";
|
|
426
426
|
})(FlowMoments || (FlowMoments = {}));
|
|
427
427
|
|
|
428
428
|
class ApiCall {
|
|
@@ -6306,7 +6306,7 @@ function v4(options, buf, offset) {
|
|
|
6306
6306
|
}
|
|
6307
6307
|
|
|
6308
6308
|
const name = "@ekyc_qoobiss/qbs-ect-cmp";
|
|
6309
|
-
const version$1 = "3.2.
|
|
6309
|
+
const version$1 = "3.2.4";
|
|
6310
6310
|
const description = "Person Identification Component";
|
|
6311
6311
|
const main = "./dist/index.cjs.js";
|
|
6312
6312
|
const module = "./dist/index.js";
|
|
@@ -6480,8 +6480,6 @@ const IdentificationComponent = class {
|
|
|
6480
6480
|
this.idSide = '';
|
|
6481
6481
|
this.errorMessage = undefined;
|
|
6482
6482
|
this.errorTitle = undefined;
|
|
6483
|
-
this.baseComponent = new BaseComponent(null);
|
|
6484
|
-
this.baseComponent.setErrorCallback(this.apiErrorEmitter);
|
|
6485
6483
|
}
|
|
6486
6484
|
async componentWillLoad() {
|
|
6487
6485
|
Events.init(window);
|
|
@@ -6489,6 +6487,8 @@ const IdentificationComponent = class {
|
|
|
6489
6487
|
if (this.env && this.env != '') {
|
|
6490
6488
|
state.environment = this.env;
|
|
6491
6489
|
}
|
|
6490
|
+
this.baseComponent = new BaseComponent(null);
|
|
6491
|
+
this.baseComponent.setErrorCallback(this.apiErrorEmitter);
|
|
6492
6492
|
if (state.debug)
|
|
6493
6493
|
this.logInit = getLogMessage(this.order_id, this.redirect_id, this.token);
|
|
6494
6494
|
if (this.token) {
|