@ekyc_qoobiss/qbs-ect-cmp 1.2.5 → 1.2.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.
- package/dist/cjs/agreement-check_17.cjs.entry.js +3 -2
- package/dist/collection/components/flow/mobile-redirect/mobile-redirect.js +2 -2
- package/dist/collection/components/flow/sms-code-validation/sms-code-validation.js +1 -0
- package/dist/esm/agreement-check_17.entry.js +3 -2
- package/dist/qbs-ect-cmp/{p-319d9efd.entry.js → p-b490e98d.entry.js} +1 -1
- package/dist/qbs-ect-cmp/qbs-ect-cmp.esm.js +1 -1
- package/package.json +1 -1
|
@@ -9164,8 +9164,8 @@ const MobileRedirect = class {
|
|
|
9164
9164
|
this.infoTextTop = MobileRedirectValues.InfoTop;
|
|
9165
9165
|
this.infoTextBottom = MobileRedirectValues.InfoBottom;
|
|
9166
9166
|
let envUri = state.environment == 'PROD' ? 'ect' : 'test';
|
|
9167
|
-
let baseUri = state.hasIdBack ? 'https://onmd.id-kyc.com/
|
|
9168
|
-
this.redirectLink = baseUri + envUri + '?redirectId=' + state.redirectId;
|
|
9167
|
+
let baseUri = state.hasIdBack ? 'https://onmd.id-kyc.com/' : 'https://onro.id-kyc.com/';
|
|
9168
|
+
this.redirectLink = baseUri + envUri + '/identification?redirectId=' + state.redirectId;
|
|
9169
9169
|
if (state.phoneNumber != '') {
|
|
9170
9170
|
this.contact = state.phoneNumber;
|
|
9171
9171
|
this.prefilledPhone = true;
|
|
@@ -9401,6 +9401,7 @@ const SmsCodeValidation = class {
|
|
|
9401
9401
|
if (state.phoneNumber != '') {
|
|
9402
9402
|
this.phoneNumber = state.phoneNumber;
|
|
9403
9403
|
this.prefilledPhone = true;
|
|
9404
|
+
this.canSend = true;
|
|
9404
9405
|
}
|
|
9405
9406
|
}
|
|
9406
9407
|
if (state.flowStatus == FlowStatus.CODE || state.flowStatus == FlowStatus.CODEERROR) {
|
|
@@ -25,8 +25,8 @@ export class MobileRedirect {
|
|
|
25
25
|
this.infoTextTop = MobileRedirectValues.InfoTop;
|
|
26
26
|
this.infoTextBottom = MobileRedirectValues.InfoBottom;
|
|
27
27
|
let envUri = store.environment == 'PROD' ? 'ect' : 'test';
|
|
28
|
-
let baseUri = store.hasIdBack ? 'https://onmd.id-kyc.com/
|
|
29
|
-
this.redirectLink = baseUri + envUri + '?redirectId=' + store.redirectId;
|
|
28
|
+
let baseUri = store.hasIdBack ? 'https://onmd.id-kyc.com/' : 'https://onro.id-kyc.com/';
|
|
29
|
+
this.redirectLink = baseUri + envUri + '/identification?redirectId=' + store.redirectId;
|
|
30
30
|
if (store.phoneNumber != '') {
|
|
31
31
|
this.contact = store.phoneNumber;
|
|
32
32
|
this.prefilledPhone = true;
|
|
@@ -44,6 +44,7 @@ export class SmsCodeValidation {
|
|
|
44
44
|
if (store.phoneNumber != '') {
|
|
45
45
|
this.phoneNumber = store.phoneNumber;
|
|
46
46
|
this.prefilledPhone = true;
|
|
47
|
+
this.canSend = true;
|
|
47
48
|
}
|
|
48
49
|
}
|
|
49
50
|
if (store.flowStatus == FlowStatus.CODE || store.flowStatus == FlowStatus.CODEERROR) {
|
|
@@ -9160,8 +9160,8 @@ const MobileRedirect = class {
|
|
|
9160
9160
|
this.infoTextTop = MobileRedirectValues.InfoTop;
|
|
9161
9161
|
this.infoTextBottom = MobileRedirectValues.InfoBottom;
|
|
9162
9162
|
let envUri = state.environment == 'PROD' ? 'ect' : 'test';
|
|
9163
|
-
let baseUri = state.hasIdBack ? 'https://onmd.id-kyc.com/
|
|
9164
|
-
this.redirectLink = baseUri + envUri + '?redirectId=' + state.redirectId;
|
|
9163
|
+
let baseUri = state.hasIdBack ? 'https://onmd.id-kyc.com/' : 'https://onro.id-kyc.com/';
|
|
9164
|
+
this.redirectLink = baseUri + envUri + '/identification?redirectId=' + state.redirectId;
|
|
9165
9165
|
if (state.phoneNumber != '') {
|
|
9166
9166
|
this.contact = state.phoneNumber;
|
|
9167
9167
|
this.prefilledPhone = true;
|
|
@@ -9397,6 +9397,7 @@ const SmsCodeValidation = class {
|
|
|
9397
9397
|
if (state.phoneNumber != '') {
|
|
9398
9398
|
this.phoneNumber = state.phoneNumber;
|
|
9399
9399
|
this.prefilledPhone = true;
|
|
9400
|
+
this.canSend = true;
|
|
9400
9401
|
}
|
|
9401
9402
|
}
|
|
9402
9403
|
if (state.flowStatus == FlowStatus.CODE || state.flowStatus == FlowStatus.CODEERROR) {
|